/* * {
    font-family: SF Pro Display;
} */


@font-face {
    font-family: 'SF Pro Text Regular';
    src: url('./font-families/SF Pro Text/SF-Pro-Text-Regular.otf');
}
@font-face {
    font-family: 'SF Pro Text Medium';
    src: url('./font-families/SF Pro Text/SF-Pro-Text-Medium.otf');
}
@font-face {
    font-family: 'SF Pro Text Semi Bold';
    src: url('./font-families/SF Pro Text/SF-Pro-Text-Semibold.otf');
}

body {
    background-color: #151515;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    padding: 0;
    margin: 0px;
}

.d-none {
    display: none !important;
}

.main-login-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 708px;
    height: 600px;
    width: 100%;
    border-radius: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding-top: 35px;
    padding-bottom: 30px;
} 
.auth-text {
    /* font-weight: 600; */
    font-size: 22px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 30px;
    padding-bottom: 8px;
    font-family: "SF Pro Text Semi Bold";
}
.auth-description {
    text-align: center;
    /* font-weight: 500; */
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    /* color: rgba(255, 255, 255, 0.8); */
    margin-bottom: 0px;
    margin-top: 0px; 
    padding-bottom: 30px;
    font-family: "SF Pro Text Medium";
}

.back-arrow-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background-color: #EEB03E;
    width: 32px;
    height: 32px;
    
}

.back-arrow-anchor {
    position: absolute;
    top: 30px;
    left: 30px;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 390px;
    /* width: 100%; */
    gap: 20px;
}
.form-lables {
    /* font-weight: 600; */
    font-size: 16px;
    line-height: 100%;
    color: #ECECEC;
    padding-bottom: 8px;
    display: block;
    font-family: "SF Pro Text Semi Bold";
}
.form-btn-div {
    display: flex;
    justify-content: center;
}
.form-btn {
    height: 50px;
    background-color: #EEB03E;
    color: #FFFFFF;
    /* font-weight: 600; */
    font-size: 18px; 
    line-height: 100%;
    border-radius: 15px;
    border: none;
    width: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: "SF Pro Text Semi Bold";
}
.form-inputs {
    border-radius: 10px;
    background-color: #2C2C2C !important;
    border: none;
    height: 50px;
    background: none;
    width: 100%;
    padding-left: 15px;
    color: white;
}
.form-inputs:focus {
    border: none;
    outline: none;
}
.form-inputs::placeholder {

    /* font-weight: 400; */
    font-size: 16px;
    line-height: 24px;
    color: #878787;
    font-family: "SF Pro Text Regular";
}

.password-icon {
    position: absolute;
    left: 15px;
}

.password-closed-eye,.password-open-eye {
    cursor: pointer;
    position: absolute;
    right: 15px;
}

.email-icon-and-input-container, .password-icon-and-input-container {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 390px;
    height: 52px;
    border-radius: 10px;
    background: #303030;
    /* margin-bottom: 20px; */
}

.toastify {
    border-radius: 6px!important;
    font-size: .875rem;
    /* font-weight: 400; */
    line-height: 14px;
    color: #c9c951;
    position: fixed;
    z-index: 11111 !important;
    font-family: "SF Pro Text Regular";
}

.danger-toast {
    border: 1px solid #FFCB04!important;
    background: #242328!important;
    color: #ffffff!important;
    display: flex!important;
    gap: 5px;
    line-height: 16px;
}

.danger-toast .toast-close {
    color: #606b85!important;
    opacity: 1!important;
    align-self: flex-start;
}

