* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: -1;
}

.wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
    
}

.wrapper h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 2em;
    text-transform: capitalize;
}

.input-box {
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1em;
}

.input-box input::placeholder {
    color: #ddd;
}

/* Login button */
.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #1e90ff;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #1c86ee;
}

/* Register link */
.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link p {
    color: #eee;
    font-size: 0.9em;
}

.register-link a {
    color: #1e90ff;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}
