
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

.navbar {
    padding: 18px 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
}

    .navbar a {
        color: white;
        text-decoration: none;
        font-size: 22px;
        font-weight: 700;
    }

.login-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.title {
    text-align: center;
    margin-bottom: 30px;
}

    .title h1 {
        margin: 0;
        font-size: 34px;
        font-weight: 700;
    }

    .title p {
        margin-top: 10px;
        opacity: 0.75;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
    }

    .form-group input {
        width: 100%;
        padding: 14px 16px;
        border: none;
        border-radius: 14px;
        background: rgba(255,255,255,0.12);
        color: white;
        font-size: 16px;
        outline: none;
    }

        .form-group input::placeholder {
            color: rgba(255,255,255,0.55);
        }

        .form-group input:focus {
            background: rgba(255,255,255,0.18);
        }

.login-btn {
    width: 100%;
    margin-top: 10px;
    border: none;
    border-radius: 14px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transition: 0.2s;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(37,99,235,0.4);
    }

.checkbox {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.google-box {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.supportme {
    display: block;
    text-align: center;
    margin-top: 28px;
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
}

    .supportme:hover {
        text-decoration: underline;
    }

.test-text {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.75;
}

small {
    opacity: 0.8;
}

@media(max-width: 600px) {

    .login-card {
        padding: 24px;
        border-radius: 18px;
    }

    .title h1 {
        font-size: 28px;
    }
}
