* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #141e30, #243b55);
    padding: 0 20px;
}

form {
    width: 380px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    color: #ddd;
}

input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: 0.3s;
}

input::placeholder {
    color: #ccc;
}

input:hover {
    background: rgba(255, 255, 255, 0.25);
}

input:focus {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
}

small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #ffb3b3;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
}

button:active {
    transform: scale(0.97);
}

button:disabled{
    background: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.footer-text {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #eee;
}

.footer-text a {
    color: #fff;
    text-decoration: underline;
}   
