@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
.show_error_message.active {
    display: block;
}

.label_show_password .password-icon:hover {
    cursor: text !important;
    color: black;
}

.label_show_password .password-icon .feather-eye-off {
    cursor: pointer;
    display: none;
}
.label_show_password .password-icon .feather-eye {
    cursor: pointer;
}

.label_show_password input:focus {
    border-color: black;
}

.label_show_password .password-icon {
    display: flex;
    align-items: center;
    position: absolute;
    top: 40%;
    justify-content: end;

    transform: translateY(-50%);
    width: 83%;
    color: #333;
    transition: all 0.2s;
}

.label_show_password {
    cursor: text !important;
    position: relative;
}



.loader {
    justify-content: center;
    text-align: center;
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-top: 3px solid var(--color-dark-blue);
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.display_none {
    display: none;
}



@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container_reset_password,
#container_contact,
#container_login {
    text-align: center;
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.logo_text {
    animation: bounce 1s;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    color: var(--color-black);
}


input[type="email"],
input[type="text"],
input[type="password"] {

    width: 70%;
    padding: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}



input[type="submit"] {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    padding: 10px;
    background-color: var(--color-dark-blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #5C7AE2;
}

input[type="submit"]:active {
    background-color: rgb(0, 55, 0);
}

.contact_button {
    width: 40%;
    padding: 10px;
    background-color: var(--color-dark-blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact_button:hover {
    background-color: var(--color-light-blue);
}

.contact_button:active {
    background-color: var(--color-very-dark-blue);
}


.bounce {
    animation: bounce 1s;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media screen and (min-width: 1900px) {


    .label_show_password .password-icon {
        width: 98%;
    }

    .logo_text {
        font-size: 130px;
        margin-top: 10px;
        color: black !important;

    }

    #form_login {
        padding: 90px;
    }

    #container_login {
        width: fit-content;
        height: fit-content;
    }

    input[type="email"],
    input[type="text"],
    input[type="submit"],
    input[type="password"] {

        width: 100%;

    }




}

@media screen and (max-height: 490px) {


    .logo_text {
        font-size: 40px !important;
        margin-top: 20px;
    }

    #contact_section {
        display: none !important;
    }

    #login_section {
        height: 100%;
    }

    #container_login {
        height: fit-content;
        width: fit-content;
        min-width: 330px;
        min-height: 450px;
    }


}

@media screen and (max-width: 1500px) {

    .logo_text {
        font-size: 70px;
        margin-top: 10px;
        color: black;
    }

    .label_show_password .password-icon {
        width: 85% !important;

    }

}

@media screen and (max-width: 1100px) {

    .logo_text {
        font-size: 60px;
        margin-top: 20px;
        color: black;
    }

}

@media only screen and (max-width: 768px) {

    .logo_text {
        font-size: 60px;
        margin-top: 20px;
        color: black;
    }

    #contact_section {
        display: none !important;
    }

    #login_section {
        height: 100%;
    }

    #container_login {
        height: fit-content;
        width: fit-content;
        min-width: 330px;
        min-height: 450px;
    }

}


.show_error_message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: white;
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    animation: slideIn 0.5s forwards;
}


@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

