body {
    margin: 0;
    padding: 0;
    background-image: url("/images/login-bg2.jpg");
    background-color: #1d2634;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #9e9ea4;
    font-family: "Poppins", sans-serif;
}

.grid-container {
    display: grid;
    grid-template-columns: 0.6fr 2fr 0.6fr;
    grid-template-rows: 0.8fr 3fr 1fr;
    height: 100vh;
}

.login-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-area: 2 / 2;
    box-shadow: 0 10px 15px -2px rgba(0, 0, 0, 0.35);
    border-radius: 50px;
}

.login-picture {
    display: grid;
    grid-template-columns: 0.1fr 1fr 0.1fr;
    grid-template-rows: 0.3fr 1fr 0.3fr;
    background-color: white;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    grid-area: 1 / 1;
    margin: 0px;
    padding: 0px;
    background-image: linear-gradient(to top, rgba(41, 185, 163, 0.81), rgba(41, 185, 163, 0.5));
    justify-content: center;
    align-items: center;

}

.login-logo {
    display: grid;
    grid-area: 2 / 2;
    font-family: "Modak", serif;
    font-size: 100px;
    color: white;
    justify-content: center;

}

.login-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.7fr 1fr 0.3fr;
    background-color: white;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    grid-area: 1 / 2;
    margin: 0px;
    padding: 0px;
}

.login-welcome {
    display: grid;
    grid-area: 1 / 1;
    margin: 15px;
    align-items: center;
    justify-content: center;
    color: rgba(41, 185, 163, 0.5);

}

.login-input {
    grid-area: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1px;
    padding: 1px;

}

#submit:hover {
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);

}

#username {
    border-radius: 8px;
    width: 300px;
}

#password {
    border-radius: 8px;
    width: 30+0px;
    width: 100%;
    padding-right: 40px; /* Leave space for the clear button */
    padding: 10px;
    box-sizing: border-box;
}

.password-container {
    position: relative;
    width: 100%;
    max-width: 300px;
}

#show-password {
    position: absolute;
    top: 75%;
    right: 10px;
    transform: translateY(-50%);
    color: #c5c5c5;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1;
}

#show-password:hover {
    color: rgba(41, 185, 163, 0.5);
}


/*        .input-box {*/
/*    margin-bottom: 1rem !important;*/

/*}*/

/*.form-label {*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.form-control {*/
/*    display: block;*/
/*    width: 100%;*/
/*    padding: 0.375rem 0.75rem;*/
/*    font-size: 1rem;*/
/*    font-weight: 400;*/
/*    line-height: 1.5;*/
/*    color: var(--bs-body-color);*/
/*    -webkit-appearance: none;*/
/*    -moz-appearance: none;*/
/*    appearance: none;*/
/*    background-color: var(--bs-body-bg);*/
/*    background-clip: padding-box;*/
/*    border: var(--bs-border-width) solid var(--bs-border-color);*/
/*    border-radius: var(--bs-border-radius);*/
/*    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;*/
/*}*/

/*.form-check {*/
/*    display: block;*/
/*    min-height: 1.5rem;*/
/*    padding-left: 1.5em;*/
/*    margin-bottom: 0.125rem;*/
/*}*/

/*.form-check-input[type=checkbox] {*/
/*    border-radius: 0.25em;*/
/*}*/