
  	/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Resetting default styling and setting font-family */	
* {
    margin: 0;	
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}   

body {
    width: 100%;
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    background: #626cd6;
    justify-content: center;
    align-items: center;
}

/* Login form styling */
.sign-up-htm ,
.login_form {
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 6px;
    padding: 41px 30px;
    margin: 30px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.sign-up-htm h3,
.login_form h3 {
    font-size: 24px;
    text-align: center;
}
img.login_logo {
    width: 160px;
    margin-bottom: 40px;
}

/* Google & Apple button styling */
.sign-up-htm .login_option,
.login_form .login_option {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.sign-up-htm .login_option .option,
.login_form .login_option .option {
    width: calc(100% / 2 - 12px);
}
.sign-up-htm .login_option .option a,
.login_form .login_option .option a {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #F8F8FB;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    margin: 34px 0 24px 0;
    text-decoration: none;
    color: #171645;
    font-weight: 500;
    transition: 0.2s ease;
}

.login_form .login_option .option a:hover {
    background: #ededf5;
    border-color: #626cd6;
}
.sign-up-htm .login_option .option a img,
.login_form .login_option .option a img {
    max-width: 25px;
}
.sign-up-htm p,
.login_form p {
    text-align: center;
    font-weight: 500;
}
.sign-up-htm .separator,
.login_form .separator {
    position: relative;
    margin-bottom: 24px;
}

/* Login option separator styling */
.sign-up-htm .separator span,
.login_form .separator span {
    background: #fff;
    z-index: 1;
    padding: 0 10px;
    position: relative;
}
.sign-up-htm .separator::after,
.login_form .separator::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    height: 1px;
    background: #C2C2C2;
    display: block;
}
form .input_box select,
form .input_box label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Input field styling */
form .input_box select,
form .input_box input {
    width: 100%;
    height: 45px;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 15px;
    padding: 0px 20px;
    margin-bottom: 25px;
    transition: 0.2s ease;
    margin-top: 5px;
}

form .input_box input:focus {
    border-color: #626cd6;
}

form .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

form .input_box {
    position: relative;
}

a {
    text-decoration: none;
    color: #626cd6;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Login button styling */
form button {
    width: 100%;
    height: 45px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #626CD6;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

form button:hover {
    background: #4954d0;
}
   
.flex{
    display: flex;
    
}
.box2{
    margin-left: 10px;
}

@media (max-width:541px){
    .flex{
    display: flex;
    flex-direction: column;
}

.box2{
    margin-left: 0px;
}

}



/*------------------Loader--------------------------*/

.loader-container {
  display: flex;
  gap: 30px;
}

.loader {
  width: 50px;
  height: 50px;
  position: relative;
}

.spinner {
  border: 10px solid rgba(0, 0, 0, 0.1);
  border-top: 10px solid #626cd6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.password_title >label,
.input_box >label {
    font-weight: bold;
    
}



/*------------------Sweet Alert--------------------------*/

.alert-title{
    font-size: 20px;
}
.custom-button{
    background-color: rgba(40, 57, 101, .9);;
}
.swal2-popup {
    max-width: 350px;
}