body {
    margin: 0;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(120deg, #1d2671, #c33764);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Card */
.form-container {
    background: white;
    width: 380px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.form-container h2 {
    color: #1d2671;
    margin-bottom: 5px;
}

.form-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Floating Labels */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: 0.3s;
    background: white;
    padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:valid + label {
    top: -8px;
    font-size: 12px;
    color: #1d2671;
}

/* Button */
.btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #1d2671;
    color: white;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 10px;
}

.btn:hover {
    background: #c33764;
}

/* Login link */
.login-link {
    margin-top: 20px;
    font-size: 14px;
}

.login-link a {
    color: #1d2671;
    font-weight: bold;
    text-decoration: none;
}
