* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(
        135deg,
        rgb(18, 59, 113) 33%,
        rgba(170, 187, 0, 1) 100%
    );
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-form h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.remember {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.remember input {
    accent-color: #fff;
}

.forgot {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.forgot:hover {
    opacity: 0.8;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: rgb(18, 59, 113);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    &:over {
        background: #f0f0f0;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.outline-btn {
    display: block;
    width: 100%;
    padding: 8px;
    background: transparent;
    color: #ffdb45ff;
    border: 2px solid #ffdb45ff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;

    &:hover {
        background: rgba(255, 107, 53, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
        text-decoration: none;
    }

    &:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
        text-decoration: none;
    }

    &:active {
        transform: translateY(0);
    }
}
/* Responsive */
@media (max-width: 480px) {
    .login-form {
        padding: 30px 25px;
    }

    .options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
