/* =========================================
   ЗМІННІ
   ========================================= */
:root {
    --color-primary: #3C9ADC;
    --color-success: #27ae60;
    --color-error: #d32f2f;
    --color-text-light: #555555;
    --color-text-gray: #666666;
    --color-bg-error: #fff0f0;
    --color-white: #ffffff;
    --color-border: #cfd6e4;
    --color-input-bg: #eef4ff;
    
    --radius-sm: 5px;
    --radius-md: 6px;
    --radius-lg: 12px;
}

/* =========================================
   ОСНОВНІ ЕЛЕМЕНТИ
   ========================================= */
#email {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    font-size: 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-input-bg);
    transition: border-color 0.2s;
}

#email.error {
    border-color: var(--color-error);
    outline: 1px solid var(--color-error);
}

.login-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 50px; 
}

.forgot-subtitle {
    margin-bottom: 20px;
    color: var(--color-text-light);
    font-size: 15px;
    text-align: center;
}

.back-link-wrap {
    margin-top: 20px;
    text-align: center;
}

/* =========================================
   КНОПКИ ТА ПОСИЛАННЯ
   ========================================= */
.btn-login {
    color: var(--color-white) !important; 
    text-decoration: none !important;
}

.btn-login:hover {
    color: var(--color-white) !important;
}

.btn-success-ok {
    display: block;
    text-decoration: none;
    line-height: 52px;
    margin-top: 10px;
}

/* =========================================
   ПОВІДОМЛЕННЯ (ERROR / SUCCESS)
   ========================================= */
.error-text {
    display: none; /* Показуємо тільки за наявності помилки */
    color: var(--color-error);
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
}

#ErrMsgServer {
    display: none; 
    width: 420px; 
    margin: 15px auto 0 auto;
    border: 1px solid var(--color-error);
    border-radius: var(--radius-sm);
    padding: 10px;
    background: var(--color-bg-error);
    box-sizing: border-box;
}

.error-server-text {
    color: var(--color-error);
    margin: 0;
    text-align: center;
}

#SuccessMsg {
    display: none;
    width: 420px;
    margin: 50px auto 0 auto;
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    text-align: center;
}

.success-title {
    color: var(--color-success);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.success-text {
    color: var(--color-text-gray);
}

/* =========================================
   АДАПТИВНІСТЬ
   ========================================= */
@media screen and (max-width: 768px) {
    body {
        background-color: var(--color-white);
    }
    .login-box {
        box-shadow: none;
        margin-top: 20px;
        width: 100%;
    }
    #ErrMsgServer, #SuccessMsg {
        width: 90%; 
        max-width: 420px;
        box-shadow: none;
    }
}