<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css?family=Nunito:400,600,700");
* {
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    color: rgba(0, 0, 0, 0.7);
}
.header-login {
    border-bottom: 1px solid #cccccc;
    box-shadow: 0px 3px 6px rgba(56, 72, 92, 0.161);
    padding: 20px 100px;
    background-color: #f4f4f4;
}
.header-login__container {
    display: flex;
    justify-content: space-between;
    height: 65px;
}
.logo {
    width: 230px;
}
.header-logo{
    cursor: pointer;
    height: 75px;
}
.invalid-feedback{
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.modal-container {
    display: flex;
    border-radius: 10px;
    transition-duration: 0.3s;
    background: #fff;
    justify-content: center;
    gap: 30px;
    /* height: 616px; */
    width: 1170px;
    margin: 64px auto 54px auto;
}
.modal-title {
    font-size: 36px;
    margin: 0;
    font-weight: 700;
    color: #13253b;
}
.modal-desc {
    margin: 10px 0 30px 0;
}

.modal-left {
    padding: 60px 40px 20px;
    width: 40%;
    border-radius: 30px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}
.modal-form{
    display: flex ;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}
.modal-button {
    color: #13253b;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    cursor: pointer;
    border: 0;
    outline: 0;
    padding: 10px 40px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
}
.modal-button:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.8);
}
.modal-right {
    border-radius: 30px;
    width: 40%;
}
.modal-right img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.modal.is-open {
    /* height: 100%;
  background: rgba(51, 51, 51, 0.85); */
}

.modal.is-open .modal-container {
    opacity: 1;
    transition-duration: 0.6s;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.modal.is-open .modal-right img {
    transform: scale(1);
}
.modal.is-open .modal-left {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}
.modal-buttons {
    /* margin-top: 20px; */
}
.modal-buttons a {
    color: #13253b;
    font-size: 14px;
}

.sign-up {
    margin: 60px 0 0;
    font-size: 14px;
    text-align: center;
}
.sign-up a {
    color: #13253b;
}

.sign-up-new{
    color:#1f5c40;
}
.sign-up-new:active{
color:#13253b;
}
.input-button {
    padding: 8px 12px;
    outline: none;
    border: 0;
    color: #fff;
    border-radius: 4px;
    background: #13253b;
    font-family: "Nunito", sans-serif;
    transition: 0.3s;
    cursor: pointer;
}
.input-button:hover {
    background: #13253b;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000000;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #86ba8833;
}

.form-group{
    margin-bottom: 15px;

}
.form-control  {
    padding: 10px 10px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: 0.3s;
    width: 100%;
}
.form-control-error{
    margin-bottom: 0px;
}
.input-block-control{
  position: relative;
}
.input-group-append{
    position: absolute;
    top: 20%;
    right: 11px;
}
.input-new-sign-up{
    background: none;
    border: none;
    text-decoration: underline;
    color:#1f5c40;
    cursor: pointer;
}

.sign-up {
    margin: 60px 0 0;
    font-size: 14px;
    text-align: center;

}
.sign-up-line{
    border: 0;
    border-top: 1px solid #ccc;
    padding-top: 2px;
    line-height: 22px;
}
.input-new-button{
    width: 100%;
    margin-top: 10px;
    background-color: #1f5c40;
}

.form-check-new-input[type="checkbox"] + label:before {
	content: "";
	width: 10px;
	height: 10px;
	float: left;
    margin: 0.2em 0.5em 0 0;
	border: 2px solid #ccc;
	background: #fff;
}
.form-check-new-input[type="checkbox"]:checked + label:before {
	border-color: #1f5c40;
}
.form-check-new-input[type="checkbox"]:checked + label:after {
    content: "";
    width: 8.0px;
    height: 3.5px;
    border: 4px solid #1f5c40;
    float: left;
    margin-left: -1.30em;
    border-top: 0;
    margin-top: 0.25em;
    border-right: 0;
    transform: rotate(-55deg);
}
.form-check-new-input{
    display: none;
}
.input-label {
    font-size: 11px;
    text-transform: uppercase;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.7px;
    color: #13253b;
    transition: 0.3s;
}

.input-block {
    display: flex;

    justify-content: space-between;
    padding: 10px 10px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.input-block input {
    outline: 0;
    border: 0;
    padding: 4px 0 0;
    font-size: 14px;
    font-family: "Nunito", sans-serif;
}
.input-block input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}
.input-block input:-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}
.input-block input::placeholder {
    color: #ccc;
    opacity: 1;
}
.input-block:focus-within {
    border-color: #8c7569;
}
.input-block:focus-within .input-label {
    color: rgba(140, 117, 105, 0.8);
}

.icon-button {
    outline: 0;
    position: absolute;
    right: 10px;
    top: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    background: 0;
    padding: 0;
    cursor: pointer;
}

.scroll-down {
    position: fixed;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #13253b;
    font-size: 32px;
    font-weight: 800;
    transform: translate(-50%, -50%);
}
.scroll-down svg {
    margin-top: 16px;
    width: 52px;
    fill: currentColor;
}
@media (max-width: 1170px) {
    .modal-container {
        width: auto;
    }
    .modal-title{
        font-size: 30px;
    }
    .modal-left {
        width: 45%;
    }
    .modal-right {
        width: 45%;
    }
}
@media (max-width: 768px) {
    .modal-container {
        width: 100%
    }
    .modal-right {
        display: none;
    }
    .modal-left {
        width: 70%;
    }
    .modal-title{
        font-size: 25px;
    }
}
@media (max-width: 500px) {
    .modal-container {

        margin: 0;
        flex-direction: column;
        align-items: center;
    }
    .modal-left {
        width: 90%;
    }
    .modal-title {
        font-size: 27px;
    }
}
</pre></body></html>