/* styles of email page */

body, html {
    margin: 0;
    padding: 0;
    background-size: cover;
    color: white;
    background-position: center;
    font-family: 'Montserrat';
    font-weight: 600;
}
  
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0px 100px;
}
  
.login-card {
    max-width: 800px;
    width: 100%;
    text-align: center;
    border-radius: 24px;
    background-color: rgb(0 41 58 / 60%);
    box-shadow: 0px 0px 8px 8px rgb(255 255 255 / 20%);
}

.login-card .login-wrapper{
    padding: 30px;
}

.logo {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo img{
    max-width: 350px;
}
.login-card .title p {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 40px;
}
 
p.tagline {
    font-size: 35px;
    line-height: 52.5px;
    margin-top: 10px;
}
.login-form {
    margin-top: 20px;
}
  
.input-group {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
input::placeholder {
    color: rgb(255 255 255 / 80%) !important;
}
.input-group label {
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
    line-height: 50px;
    min-width: 126px;
    text-align: left;
}
  
.input-wrapper {
    position: relative;
}
  
.input-wrapper span.icon-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    font-size: 24px;
    line-height: 55px;
}

.input-wrapper span.icon-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    font-size: 24px;
    line-height: 45px;
}
.input-wrapper input:focus-visible {
    outline: none;
}
.fa-eye:hover {
    cursor: pointer;
}

.input-wrapper input {
    padding: 10px 15px 10px 50px;
    border: 3px solid #fff;
    border-radius: 16px;
    font-size: 16px;
    color: #fff;
    background: transparent;
    line-height: 26px;
    min-width: 320px;
    font-family: 'Montserrat' !important;
    font-weight: 500;
}
  
.input-wrapper input::placeholder {
    color: #aaa;
}
button#signin-button {
    padding: 8px;
    background: #FF862C;
    color: #fff;
    border-radius: 8px;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
    font-family: 'Montserrat';
    font-weight: 600;
    width: 160px;
    border: none;
}
button#signin-button:hover {
    cursor: pointer;
}

.all-rights p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}
.fa-eye, .fa-eye-slash {
    font-size: 18px;
}
.fa-eye:hover, .fa-eye-slash:hover {
    cursor: pointer;
}
.error-message{
    display: none;
    color: white;
    text-align: left;
    position: absolute;
}