/* ==========================
   JD KNOWLEDGE LOGIN
========================== */

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

body {
    width: 100%;
    min-height: 100vh;
    padding: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #07162f, #0d326b);
}

.login-card {
    width: 100%;
    max-width: 380px;
    padding: 18px 24px;

    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);

    text-align: center;
}

.login-logo {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    margin-bottom: 5px;
    color: #0b1f3a;
    font-size: 22px;
}

.login-subtitle {
    margin-bottom: 14px;
    color: #666666;
    font-size: 14px;
}

label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;

    color: #0b1f3a;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}

input {
    width: 100%;
    padding: 10px;

    border: 1px solid #cccccc;
    border-radius: 8px;

    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: #d4af37;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 12px 0;
    font-size: 13px;
}

.remember-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.remember-option input {
    width: auto;
}

.text-button {
    border: none;
    background: none;
    color: #0d326b;
    cursor: pointer;
    font-weight: bold;
}

.sign-in-button,
.create-account-button {
    width: 100%;
    padding: 11px;

    border-radius: 8px;

    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.sign-in-button {
    border: none;
    background: #0b1f3a;
    color: #ffffff;
}

.sign-in-button:hover {
    background: #d4af37;
    color: #0b1f3a;
}

.create-account-button {
    margin-top: 12px;

    border: 1px solid #0b1f3a;
    background: #ffffff;
    color: #0b1f3a;
}

.home-link {
    display: block;
    margin-top: 12px;

    color: #0d326b;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.login-message {
    min-height: 16px;
    margin-top: 7px;
    font-size: 13px;
}

@media (max-width: 600px) {
    .login-card {
        padding: 20px;
    }

    .login-logo {
        width: 65px;
    }

    h1 {
        font-size: 24px;
    }
}