/* ==================================================
   ФІНАНСОВА ЗВІТНІСТЬ
   ТОВ «ВЕЛЕТЕНЬ»
================================================== */

.financial-page {
    width: 100%;
    padding: 55px 20px 80px;
    box-sizing: border-box;
}


/* ==================================================
   LOGIN
================================================== */

.financial-login {
    max-width: 620px;
    margin: 30px auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    text-align: center;
}

.financial-login-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f7f4;
    border-radius: 50%;

    font-size: 30px;
}

.financial-login h1 {
    margin: 0 0 20px;

    color: #006b35;

    font-size: 32px;
}

.financial-login p {
    margin: 0 auto 15px;

    color: #555;

    font-size: 17px;
    line-height: 1.7;
}

.financial-login-note {
    color: #777 !important;
    font-size: 15px !important;
}

.financial-login-button {
    display: inline-block;

    margin-top: 20px;

    padding: 14px 38px;

    background: #006b35;
    color: #fff !important;

    border-radius: 8px;

    text-decoration: none !important;

    font-weight: 700;

    transition: .25s;
}

.financial-login-button:hover {
    background: #004f28;
    transform: translateY(-2px);
}


/* ==================================================
   MAIN CONTAINER
================================================== */

.financial-content {
    max-width: 1050px;

    margin: 0 auto;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 10px 35px rgba(0,0,0,.07);

    overflow: hidden;
}


/* ==================================================
   HEADER
================================================== */

.financial-header {
    padding: 45px 50px 35px;

    text-align: center;

    border-bottom: 1px solid #eee;
}

.financial-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #b58a16;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.financial-header h1 {
    margin: 0 0 12px;

    color: #006b35;

    font-size: 38px;

    line-height: 1.2;
}

.financial-header p {
    margin: 0;

    color: #777;

    font-size: 17px;
}


/* ==================================================
   YEARS
================================================== */

.financial-years {
    padding: 35px 40px 50px;
}


/* ==================================================
   YEAR CARD
================================================== */

.financial-year {
    margin-bottom: 35px;

    border: 1px solid #e4e9e5;

    border-radius: 14px;

    overflow: hidden;

    background: #fff;
}

.financial-year:last-child {
    margin-bottom: 0;
}


/* ==================================================
   YEAR HEADER
================================================== */

.financial-year-header {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px 30px;

    background: #f4f8f5;

    border-bottom: 1px solid #e3e9e4;
}

.financial-year-icon {
    min-width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #006b35;

    color: #fff;

    border-radius: 12px;

    font-size: 18px;

    font-weight: 800;
}

.financial-year-header h2 {
    margin: 0 0 6px;

    color: #006b35;

    font-size: 23px;
}

.financial-year-header p {
    margin: 0;

    color: #777;

    font-size: 14px;
}


/* ==================================================
   DOCUMENTS
================================================== */

.financial-documents {
    padding: 10px 30px;
}

.financial-document {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 5px;

    border-bottom: 1px solid #eeeeee;
}

.financial-document:last-child {
    border-bottom: 0;
}

.document-name {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #333;

    font-size: 16px;

    line-height: 1.5;
}

.document-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    background: #f0f6f2;

    border-radius: 8px;

    font-size: 17px;
}

.document-button {
    flex-shrink: 0;

    padding: 9px 17px;

    background: #006b35;

    color: #fff !important;

    border-radius: 6px;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 700;

    transition: .2s;
}

.document-button:hover {
    background: #004f28;
}


/* ==================================================
   FOOTER
================================================== */

.financial-footer {
    padding: 20px 30px;

    background: #f7f9f7;

    border-top: 1px solid #eee;

    text-align: center;

    color: #777;

    font-size: 13px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

    .financial-page {
        padding: 30px 15px 50px;
    }

    .financial-login {
        padding: 40px 25px;
    }

    .financial-login h1 {
        font-size: 27px;
    }

    .financial-content {
        border-radius: 12px;
    }

    .financial-header {
        padding: 35px 20px 28px;
    }

    .financial-header h1 {
        font-size: 29px;
    }

    .financial-header p {
        font-size: 15px;
    }

    .financial-years {
        padding: 25px 15px 35px;
    }

    .financial-year-header {
        align-items: flex-start;

        padding: 20px;

        gap: 15px;
    }

    .financial-year-icon {
        min-width: 58px;
        height: 58px;

        font-size: 15px;
    }

    .financial-year-header h2 {
        font-size: 19px;
    }

    .financial-year-header p {
        font-size: 13px;
    }

    .financial-documents {
        padding: 5px 15px;
    }

    .financial-document {
        align-items: flex-start;

        padding: 15px 0;
    }

    .document-name {
        font-size: 14px;
    }

    .document-icon {
        flex-shrink: 0;

        width: 32px;
        height: 32px;
    }

    .document-button {
        padding: 8px 11px;

        font-size: 12px;
    }

}


/* ==================================================
   VERY SMALL SCREENS
================================================== */

@media (max-width: 480px) {

    .financial-document {
        flex-direction: column;

        gap: 10px;
    }

    .document-button {
        margin-left: 44px;
    }

}
/* ==========================================
   AUTH BUTTONS
========================================== */

.financial-auth-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    flex-wrap: wrap;

}

.financial-register-button {

    display: inline-block;

    padding: 13px 28px;

    border: 2px solid #006b35;

    background: #fff;

    color: #006b35 !important;

    border-radius: 8px;

    text-decoration: none !important;

    font-weight: 700;

    transition: .25s;

}

.financial-register-button:hover {

    background: #006b35;

    color: #fff !important;

}


/* ==========================================
   REGISTRATION
========================================== */

.registration-page {

    width: 100%;

    padding: 60px 20px 80px;

    box-sizing: border-box;

}


.registration-box {

    max-width: 600px;

    margin: 0 auto;

    padding: 50px 45px;

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.08);

    text-align: center;

}


.registration-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f1f7f3;

    border-radius: 50%;

    font-size: 30px;

}


.registration-box h1 {

    margin: 0 0 15px;

    color: #006b35;

    font-size: 34px;

}


.registration-subtitle {

    margin: 0 auto 30px;

    max-width: 480px;

    color: #777;

    line-height: 1.7;

}


/* ==========================================
   FORM
========================================== */

.registration-form {

    text-align: left;

}


.registration-form label {

    display: block;

    margin: 0 0 7px;

    color: #333;

    font-weight: 700;

    font-size: 15px;

}


.registration-form input {

    display: block;

    width: 100%;

    height: 48px;

    margin-bottom: 20px;

    padding: 0 15px;

    box-sizing: border-box;

    border: 1px solid #d9dfdb;

    border-radius: 7px;

    background: #fff;

    font-size: 15px;

    outline: none;

}


.registration-form input:focus {

    border-color: #006b35;

    box-shadow:
        0 0 0 3px rgba(0,107,53,.08);

}


.registration-form button {

    width: 100%;

    height: 50px;

    border: 0;

    border-radius: 8px;

    background: #006b35;

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s;

}


.registration-form button:hover {

    background: #004f28;

}


/* ==========================================
   MESSAGES
========================================== */

.registration-message {

    margin-bottom: 25px;

    padding: 17px 20px;

    border-radius: 8px;

    font-size: 15px;

    line-height: 1.6;

}


.registration-message.success {

    background: #edf8f1;

    border-left: 4px solid #006b35;

    color: #006b35;

}


.registration-message.error {

    background: #fff1f1;

    border-left: 4px solid #c62828;

    color: #9b1c1c;

}


.registration-links {

    margin-top: 25px;

}


.registration-links a {

    color: #006b35;

    font-size: 14px;

    font-weight: 600;

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .registration-page {

        padding: 30px 15px 50px;

    }

    .registration-box {

        padding: 40px 25px;

        border-radius: 14px;

    }

    .registration-box h1 {

        font-size: 28px;

    }

    .financial-auth-buttons {

        flex-direction: column;

    }

    .financial-login-button,
    .financial-register-button {

        width: 100%;

        box-sizing: border-box;

        text-align: center;

    }

}
/* =========================================================
   СТОРІНКА РЕЄСТРАЦІЇ
   ТОВ «ВЕЛЕТЕНЬ»
========================================================= */

.registration-page {
    width: 100%;
    box-sizing: border-box;
    padding: 60px 20px 80px;
    background: #f5f6f4;
}


/* Основний блок */

.registration-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 45px 50px;
    box-sizing: border-box;

    background: #ffffff;
    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08);

    text-align: center;
}


/* Іконка */

.registration-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf7f1;
    color: #00733d;

    font-size: 30px;
}


/* Назва підприємства */

.registration-company {
    margin-bottom: 8px;

    color: #d49a18;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* Заголовок */

.registration-box h1 {
    margin: 0 0 12px;

    color: #006b35;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}


/* Опис */

.registration-subtitle {
    max-width: 480px;

    margin: 0 auto 32px;

    color: #707070;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ФОРМА
========================================================= */

.registration-form {
    width: 100%;
    text-align: left;
}


/* Поле */

.registration-field {
    width: 100%;
    margin-bottom: 20px;
}


/* Підпис */

.registration-field label {
    display: block;

    margin-bottom: 7px;

    color: #222;

    font-size: 14px;
    font-weight: 700;
}


/* Поля вводу */

.registration-field input {
    display: block;

    width: 100%;
    height: 50px;

    padding: 0 15px;

    box-sizing: border-box;

    border: 1px solid #d8ddd9;
    border-radius: 7px;

    background: #ffffff;

    color: #222;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* Focus */

.registration-field input:focus {
    border-color: #00733d;

    box-shadow:
        0 0 0 3px rgba(0, 115, 61, 0.10);
}


/* Placeholder */

.registration-field input::placeholder {
    color: #a2a2a2;
}


/* Підказка під полем */

.registration-hint {
    margin-top: 6px;

    color: #888;

    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   КНОПКА
========================================================= */

.registration-submit {
    display: block;

    width: 100%;
    height: 52px;

    margin-top: 8px;

    padding: 0 20px;

    border: 0;
    border-radius: 8px;

    background: #00733d;
    color: #ffffff;

    font-family: inherit;
    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
}


.registration-submit:hover {
    background: #005d31;

    box-shadow:
        0 5px 15px rgba(0, 115, 61, 0.20);

    transform: translateY(-1px);
}


.registration-submit:active {
    transform: translateY(0);
}


/* =========================================================
   ПОВІДОМЛЕННЯ
========================================================= */

.registration-message {
    width: 100%;

    margin: 0 0 25px;
    padding: 16px 18px;

    box-sizing: border-box;

    border-radius: 8px;

    font-size: 14px;
    line-height: 1.6;

    text-align: left;
}


/* Успішна реєстрація */

.registration-message.success {
    background: #edf8f1;

    border-left: 4px solid #00733d;

    color: #006331;
}


/* Помилка */

.registration-message.error {
    background: #fff1f1;

    border-left: 4px solid #c62828;

    color: #a51e1e;
}


/* =========================================================
   ПОСИЛАННЯ
========================================================= */

.registration-links {
    margin-top: 25px;

    text-align: center;
}


.registration-links a {
    color: #00733d;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}


.registration-links a:hover {
    color: #d49a18;

    text-decoration: underline;
}


/* =========================================================
   МОБІЛЬНА ВЕРСІЯ
========================================================= */

@media (max-width: 700px) {

    .registration-page {
        padding: 35px 15px 55px;
    }


    .registration-box {
        padding: 35px 25px;
        border-radius: 14px;
    }


    .registration-box h1 {
        font-size: 30px;
    }


    .registration-subtitle {
        font-size: 14px;
    }


    .registration-field input {
        height: 50px;
        font-size: 16px;
    }


    .registration-submit {
        height: 52px;
        font-size: 16px;
    }

}


/* =========================================================
   МАЛЕНЬКІ ТЕЛЕФОНИ
========================================================= */

@media (max-width: 400px) {

    .registration-page {
        padding: 25px 10px 45px;
    }


    .registration-box {
        padding: 30px 18px;
    }


    .registration-box h1 {
        font-size: 27px;
    }


    .registration-icon {
        width: 60px;
        height: 60px;

        font-size: 26px;
    }

}
/* ==========================================
   УСПІШНА РЕЄСТРАЦІЯ
========================================== */

.registration-success {
    max-width: 650px;
    margin: 30px auto;
    padding: 35px 40px;
    background: #f4faf6;
    border: 1px solid #d9eadf;
    border-radius: 14px;
    text-align: center;
}

.registration-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #00833e;
    color: #fff;

    border-radius: 50%;

    font-size: 34px;
    font-weight: 700;
}

.registration-success h2 {
    margin: 0 0 18px;

    color: #007a3d;
    font-size: 28px;
    line-height: 1.25;
}

.registration-success p {
    margin: 10px 0;

    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.registration-success-note {
    margin-top: 22px !important;
    padding: 15px 20px;

    background: #fff;
    border-left: 4px solid #d9a928;

    color: #333 !important;
    font-weight: 600;
}


/* МОБІЛЬНА ВЕРСІЯ */

@media (max-width: 600px) {

    .registration-success {
        margin: 20px 10px;
        padding: 28px 20px;
    }

    .registration-success h2 {
        font-size: 23px;
    }

    .registration-success p {
        font-size: 15px;
    }

}