﻿html,
body {
    background-color: #f5f5f5;
    font-weight: 300;
    max-height: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0;
    font-family: "Inter", sans-serif;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}
.visibilityButton {
    margin-right: 5px;
    display: flex;
    align-items: center;
}
.full-screen {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}
#loginEmailInput {
    font-family: "Inter", sans-serif;
}

.login-card {
    display: flex;
    padding: 30px 0px 30px 0px;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 30px;
    height: fit-content;
    min-height: 400px;
    width: 70%;
    box-shadow: rgba(0, 16, 24, 0.1) 1px 1px 10px 0px;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.login-card-left,
.login-card-right {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    max-width: 630px;
    height: 100%;
    min-height: 100%;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-logo {
    display: flex;
    height: fit-content;
    max-height: 80px;
    align-content: center;
    width: fit-content;
    max-width: 40%;
}

.login-title {
    display: flex;
    align-self: center;
    height: fit-content;
    max-height: 80px;
    width: fit-content;
    max-width: 100%;
    margin: 25px;
    box-sizing: border-box;
}

.login-form {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: left;
    align-content: center;
    height: 100%;
    padding-right: 20px;
    box-sizing: border-box;
}
.forgot-password-form {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: left;
    align-content: center;
    padding-right: 20px;
    box-sizing: border-box;
}
.login-form .custom-select {
    margin-bottom: 15px;
}

.login-links {
    display: flex;
    width: 100%;
}

.login-right {
    background-color: white;
    flex-wrap: wrap;
}

.login-input {
    width: 100%;
    height: 40px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid rgb(206, 206, 206);
}

    .login-input:focus {
        border-bottom: 1px solid #5a97d7;
    }

    .login-input::placeholder {
        color: rgb(206, 206, 206);
    }

.card-detail.login {
    min-width: 100%;
    min-height: 40px;
    border-radius: 15px;
}
.card-detail.login .material-symbols-rounded {
    cursor: default;
}

    .card-detail.login input {
        border: none;
        height: 100%;
        flex: 1;
    }

    .card-detail.login span {
        color: #333333;
        font-size: 18px;
        cursor: pointer;
    }

    .card-detail.login:hover {
        border: 1px solid rgba(192, 192, 192, 0.4);
        box-shadow: rgba(100, 163, 234, 0.1) 0px 0px 0px 4px;
    }

    .card-detail.login span:nth-of-type(1) {
        border-right: 1px solid #cccccc;
        padding-right: 7px;
        margin-right: 7px;
    }

    .card-detail.login:focus-within {
        border: 1px solid rgba(90, 153, 224, 0.4);
        box-shadow: rgba(100, 163, 234, 0.1) 0px 0px 0px 4px;
    }

.card-detail-heading.login {
    min-width: 100%;
    font-size: 11.5px;
    font-weight: 600;
    color: #bbbbbb;
}
#forgot-password {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}
#visibilityButton {
    margin-right: 5px;
}
.forgot-password-div {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center
}
.password-reset-div {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center
}
.forgot-password-div p {
    padding: 0px 20px;
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
}
.password-reset-div p {
    padding: 0px 20px;
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
}
.forgot-password-div form {
    width: 30%;
    min-width: 550px;
    height: fit-content;
}
.password-reset-div form {
    width: 30%;
    min-width: 550px;
    text-align: center;
    height: fit-content;
}
.forgot-password-div form,
.password-reset-div form {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 0px;
}
#forgot-password-header {
    padding: 0px 20px 0px 20px;
    font-size: 20px;
    width: 100%;
    margin: 0px;
}