﻿.login-form_container {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
}

.login-form_wrapper {
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: stretch;
    box-shadow: 0 0 10px #0000002b;
    border-top-left-radius: 45px;
    overflow: hidden;
    background: #fff;
}


.btns-wrapper {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: relative;
}




.title_section_login {
    text-align: center;
    color: var(--text-color-313A48);
    margin-top: 40px;
}

.title_section_login span {
    position: relative;
}

.title_section_login span::after {
    content: "";
    background-image: url("assets/Images/texture/top-view-colorful-eyeshadow-white-1111-removebg-preview\ 2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 70px;
    height: 40px;
    position: absolute;
    left: -25px;
    top: -5px;
    z-index: -1;
    transform: rotate(15deg);
}

.input_login {
    width: 100%;
    border: 1px solid #C4C6CA;
    font-size: 14px;
    padding: 10px;
    border-radius: 0 15px 0 0;
}

.button-Calculator {
    background-color: var(--bg-color-main-5597CD);
    color: var(--text-color-white);
    font-size: 14px;
    padding: 10px;
    border-radius: 0 20px 0 0;
    cursor: pointer;
}

.btn-login {
    width: 100%;
    background-color: #5597CD;
    color: #fff;
    border-radius: 0 15px 0 0;
    padding: 13px;
    letter-spacing: 1px;
}

.btn-sing_up {
    width: 100%;
    padding: 13px;
    background-color: var(--text-color-white);
    border: 1px solid var(--bg-color-main);
    border-radius: 0 15px 0 0;
    color: var(--bg-color-main);
}


#login-loading {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 64px;
    height: 64px;
    border: 6px solid #ccc;
    border-top-color: var(--bg-color-main, #3498db);
    /* fallback color if CSS var not set */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 16px;
    font-size: 16px;
    color: var(--text-color-313A48, #333);
    text-align: center;
    font-weight: 500;
}