@font-face {
    font-family: Roboto-Regular;
    src: url(/app/public/fonts/Roboto-Regular.ttf);
}

:root {
    /* fonts */
    --font-lexend-deca: "Lexend Deca";
    --font-montserrat: Montserrat;
    /* font sizes */
    --font-size-sm: 14px;
    /* Colors */
    --color-darkslategray-100: #224957;
    --color-deep-navy-blue: #15385e;
    --color-desaturated-blue-gray: #15385e;
    --color-light-green: #9fcb5e;
    --color-pale-grey: #f9f9f9;
    /* Border radiuses */
    --br-3xs: 10px;
}

.content {
    align-items: center;
    background-color: #ddedfc;
    display: flex;
    font-family: var(--font-lexend-deca);
    height: 100vh;
    line-height: normal;
    overflow-x: hidden;
    width: 100%;
}

.login-form {
    align-items: center;
    background-color: white;
    border-radius: 43px;
    box-shadow: 14px 24px 49px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
}

.logo {
    max-height: 250px;
    max-width: 440px;
    object-fit: cover;
    padding-top: 30px;
}

.form {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 20px 0px 40px 0px;
    width: 100%;
}

.info {
    color: #224957;
    margin: 0px 0px;
    font-size: 18px;
}

.username-field {
    align-items: center;
    background-color: var(--color-desaturated-blue-gray);
    border: 2px solid #010202;
    border-radius: var(--br-3xs);
    display: flex;
    height: 45px;
    margin: 30px 0px 0px 0px;
    width: 300px;
}

.username {
    background-color: var(--color-desaturated-blue-gray);
    border: none;
    border-radius: var(--br-3xs);
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 600;
    height: 100%;
    padding-left: 14px;
    width: 275px;
}

.username::placeholder {
    color: #fff;
    line-height: 20px;
}

.username:focus {
    color: white;
    outline: none;
    padding-left: 14px;
}
.username:focus::placeholder {
    color: transparent;
}

.user-icon {
    color: white;
    font-size: 25px !important;
    font-weight: 500;
    margin-right: 8px; 
}

.password-field {
    align-items: center;
    background-color: var(--color-desaturated-blue-gray);
    border: 2px solid #010202;
    border-radius: var(--br-3xs);
    display: flex;
    height: 45px;
    margin: 30px 0px 0px 0px;
    width: 300px;
}

.password {
    background-color: var(--color-desaturated-blue-gray);
    border: none;
    border-radius: var(--br-3xs);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 600;
    height: 100%;
    padding-left: 14px;
    width: 275px;
}

.password::placeholder {
    color: #fff;
    line-height: 20px;
}

.password:focus {
    color: white;
    outline: none;
    padding-left: 14px;
}

.password:focus::placeholder {
    color: transparent;
}

.toggle-password {
    color: white;
    cursor: pointer;
    font-size: 25px !important;
    font-weight: 500;
    margin-right: 8px; 
}

.checkbox {
    color: #093545;
    cursor: default;
    font-family: var(--font-montserrat);
    font-weight: 800;
}

/* Hide the default checkbox */
.checkbox input[type="checkbox"] {
    display: none;
}

/* Style the custom checkbox */
.checkbox .custom-checkbox {
    background-color: var(--color-desaturated-blue-gray); /* Change the color as needed */
    border: 1px solid var(--color-desaturated-blue-gray); /* Add a border for contrast */
    border-radius: 5px;
    display: inline-block;
    height: 20px; /* Adjust the size of the custom checkbox */
    margin-right: 2px; /* Adjust spacing between checkbox and label */
    vertical-align: middle;
    width: 20px; /* Adjust the size of the custom checkbox */
}

/* Style the checkmark (initially hidden) */
.checkbox .custom-checkbox::before {
    content: "\2713"; /* Unicode checkmark character */
    font-size: 14px; /* Adjust the size of the checkmark */
    color: white; /* Color of the checkmark */
    opacity: 0; /* Initially hidden */
    padding-left: 3px;
    transition: opacity 0.3s; /* Add a transition effect */
}

/* Show the checkmark when the checkbox is checked */
.checkbox input[type="checkbox"]:checked + .custom-checkbox::before {
    opacity: 1; /* Show the checkmark */
}

.checkbox .custom-checkbox:hover {
    cursor: pointer;
}

.remember-me {
    color: var(--color-desaturated-blue-gray);
    cursor: default;
    font-family: var(--font-montserrat);
    font-weight: 800;
}

.login-btn {
    background-color: var(--color-light-green);
    border: var(--color-light-green);
    border-radius: var(--br-3xs);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    color: var(--color-desaturated-blue-gray);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    height: 45px;
    margin: 30px 0px 0px 0px;
    width: 300px;
}

.vectors-icon {
    height: 90px;
    object-fit: cover;
    width: 1385px;
}

/** BUTTON **/
.btn-secondary {
    background-color: var(--color-pale-grey) !important;
    border: none !important;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.btn-secondary:hover {
    background-color: var(--color-deep-navy-blue) !important;
    color: white !important;
    transform: scale(1.01) perspective(1px);
}

.btn-secondary:hover h4 {
    color: white;
}

/** FONT **/
.font-text-primary {
    color: var(--color-deep-navy-blue) !important;
    font-family: Roboto-Regular;
    font-size: 16px;
    font-weight: 600;
}

.font-text-white {
    color: white;
    font-family: Roboto-Regular;
    font-size: 16px;
    font-weight: 600;
}

.modal-content {
    background-color: var(--color-deep-navy-blue);
}