@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 */
/* Login form styling */
.gallery{ height:430px;}
.gal-box {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	margin-bottom:10px;
}
.gal-box h3 {
    font-size: 18px;
	margin-top:8px;
}
.gal-box h3 a {
    color:#333333!important; font-weight:bold!important;
}
.gal-box h4 {
    font-size: 14px;
	margin-top:8px;
	color:#666666
}
/* Google & Apple button styling */
.gal-box .login_option {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.gal-box .login_option .option {
    width: calc(100% / 2 - 12px);
}
.gal-box .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;
}
.gal-box .login_option .option a:hover {
    background: #ededf5;
    border-color: #626cd6;
}
.gal-box .login_option .option a img {
    max-width: 25px;
}
.gal-box p {
    font-weight: 500;
}
.gal-box .separator {
    position: relative;
    margin-bottom: 24px;
}
/* Login option separator styling */
.gal-box .separator span {
    background: #fff;
    z-index: 1;
    padding: 0 10px;
    position: relative;
}
.gal-box .separator::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    height: 1px;
    background: #C2C2C2;
    display: block;
}
.gal-box .input_box label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}
/* Input field styling */
.gal-box .input_box input {
    width: 100%;
    height: 57px;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 17px;
    padding: 0px 20px;
    margin-bottom: 25px;
    transition: 0.2s ease;
}
.gal-box .input_box textarea {
    width: 100%;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 17px;
    padding: 0px 20px;
    margin-bottom: 25px;
    transition: 0.2s ease;
}

.gal-box .input_box select {
    width: 100%;
    height: 57px;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 17px;
    padding: 0px 20px;
    margin-bottom: 25px;
    transition: 0.2s ease;
}



.gal-box .input_box input:focus {
    border-color: #626cd6;
}
.gal-box .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.gal-box .input_box {
    position: relative;
}
.gal-box a {
    text-decoration: none;
    color: #626cd6;
    font-weight: 500;
}
.gal-box a:hover {
    text-decoration: underline;
}
/* Login button styling */

.gal-box button:hover {
    background: #990000;
	color:#FFFFFF;
	border:1px #990000 solid;
}

