.div_body{
    height: 100%;
    width: 100%;
 font-family: 'Karla', 'sans-serif';
}

.login_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-color: rgba(248, 248, 248, 1);
    max-width: 50%;
    text-align: center;;
}

.header_block{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh; /* Adjust this value to set the container's height */
    padding: 16px; /* Add padding to prevent the logo from touching the container's edge */
    margin-bottom: 30px;
}

.header_logo{
    max-width: 100%;
    max-height: 100%;
    width: 320px; /* Set the max width of the logo */
    height: auto; /* Maintain the logo's aspect ratio */
    object-fit: contain; /* Ensure the logo is resized while preserving its aspect ratio */
}


.success_div{
    display: flex;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column  ;
    gap: 4px;
    justify-content: center;
}

.success_div .error{
    display: flex;
    text-align: center;
    align-items: center;
    margin: auto;
    padding: 15px;
    margin-bottom: 10px;
    justify-content: center;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.success_div .success{
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    margin: auto;
    padding: 45px;
    margin-bottom: 25px;
    justify-content: center;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.block_divider{
    width: 100%;
    padding-top: 25px;
    padding-left: 50px;
    padding-right: 50px;
}

.login_user_block{
    font-family: 'Unica One';
    font-size: 28px;
    font-weight: 400;
}

.input_flex{
    padding-top: 15px;
    display: flex;
    text-align: start;
    flex-direction: column;
    justify-content: start;
    margin-left:  20px;
    margin-right: 20px;
}

.input_flex input{
    padding-left: 10px;
    height: 40px;
}

.shared_input_flex{
    display: flex;
    flex-direction: row;
}
#id_extension{
    width: 10%;
}
#id_phone{
    width: 90%;
}

.name_input_flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.input_flex label{
    font-family: "Unica One";
    font-size: "18px";
    font-weight: 400;
}

.input_flex input{
    border-width: 0px;
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(252, 252, 252, 1);
    color: #000;
    font-family: "Karla";
}

.footer_div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-bottom: 15px;
}

#policy_link {
    border-style: solid;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 20px;
    border-top-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-color: rgba(0, 0, 0, 1);
    border-radius: 0px;
    background-color: black;
    text-align: center;
    text-decoration: none;
    line-height: 2.5em;
    color: rgba(255,255, 255, 1);
    background-image: none;
}

#policy_link:hover{
    color: rgba(0, 0, 0, 1);
    background-color: rgba(255,255, 255, 1);
}

.submit_div{
    padding-top: 15px;
}

#submit_button {
    height: 60px;
    border-style: solid;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 20px;
    border-top-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-color: rgba(250, 80, 0, 1);
    border-radius: 0px;
    background-color: rgba(250, 80, 0, 1);
    text-align: center;
    text-decoration: none;
    line-height: 2.5em;
    color: rgba(255,255, 255, 1);
    background-image: none;
    font-size: 18px;
}

#submit_button:hover{
    color: rgba(250, 80, 0, 1) ;
    background-color: rgba(255,255, 255, 1);
    border-color: rgba(250, 80, 0, 1) ;
}

.flex_row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 2rem auto;
}

.popup-trigger {
    cursor: pointer;
    text-decoration: underline;
    color: #0066cc;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.popup-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 5px;
    width: 70%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h4 {
    margin-top: 0;
    color: #333;
}

.popup_lines {
    padding-left: 1.5rem;
    list-style-type: none;
}

.close-btn {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background-color: #FA5500;
    color: white;
    border: 1px solid #FA5500;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.close-btn:hover {
    background-color: white;
    color: #FA5500;
    border-color: #FA5500;
}

.error_text{
    color: red;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}