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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fc;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #eff2f6; 
    color: #1a1c1e;
    overflow-x: hidden;
    height: 100vh;
}

.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    max-height: 95vh;
    overflow-y: auto;
}

.brand-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 18px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.input-control {
    width: 100%;
    background-color: #f1f4f9;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
    outline: none;
}

.input-control:focus {
    border-color: #4285f4;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.1);
}

.password-container {
    position: relative;
}

.reg_eye-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    display: flex;
    z-index: 10;
}

.eye-toggle {
    position: absolute;
    right: 18px;
    top: 33%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    display: flex;
    z-index: 10;
}



.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 18px;
    border-radius: 22px;
    border: none;
    cursor: pointer;    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-text {
    margin-top: 30px;
    font-size: 14px;
    color: #64748b;
}

.link-text {
    color: #4285f4;
    text-decoration: none;
    font-weight: 700;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

.shake-input {
    animation: shake 0.3s ease-in-out;
    border-color: #ef4444 !important;
    background-color: #fff5f5 !important;
}

@media (max-width: 480px) {
    .login-card {
        padding: 40px 24px;
        border-radius: 32px;
    }
}

.forgot-link-text{
    margin-top: 4px;
    font-size: 14px;
    color: #4285f4;
    display: flex;
    justify-content: end;
    text-decoration: none;
    margin-right: 4px;
}

#notify {
    position: fixed;
    z-index: 99999;
    display: flex;
    gap: 10px;
    pointer-events: none;
}

@media (max-width: 768px) {
    #notify {
        top: 12px;
        left: 12px;
        right: 12px;
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    #notify {
        right: 20px;
        bottom: 20px;
        width: 320px;
        flex-direction: column-reverse;
    }
}

.notify-item {
    pointer-events: auto;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.notify-item.notify-error {
    background: #ffeded;
    border: 1px solid #ffb8b8;
    color: #d93025;
}

.notify-item.notify-success {
    background: #eafaf0;
    border: 1px solid #a9e1bb;
    color: #169c46;
}

.notify-item.notify-warning {
    background: #fff6df;
    border: 1px solid #f4da91;
    color: #a87400;
}

.notify-item.notify-info {
    background: #edf4ff;
    border: 1px solid #bdd3ff;
    color: #2f6fe4;
}

.notify-text {
    margin: 0;
    word-break: break-word;
}
