/* --- General body style --- */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Login container --- */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* --- Login card --- */
.login-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    width: 360px;
    color: #fff;
}

/* --- Header --- */
.login-header h2 {
    margin: 0;
    font-size: 28px;
    text-align: center;
}

.login-header p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

/* --- Input fields --- */
.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 14px;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Login button --- */
.login-btn {
    width: 100%;
    padding: 12px 0;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* --- Form options --- */
.form-options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
}

.form-options a {
    color: #fff;
    text-decoration: none;
}

.form-options a:hover {
    text-decoration: underline;
}

/* --- Social login buttons --- */
.social-login {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.social-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
}

.google-btn {
    background: #DB4437;
}

.github-btn {
    background: #333;
}

/* --- Signup link --- */
.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}

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