@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
.spinner {
	width: 16px;
	height: 16px;
	border: 2px solid #fff;
	border-top: 2px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-left: 8px;
	vertical-align: middle;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.success {
	color: green;
	margin-bottom: 10px;
}

.error {
	color: #A32626;
	margin-bottom: 10px;
}
.sendBtn
{
	padding:10px 30px 8px 30px !important;
	border-radius: 30px !important;
	color: #ffd700 !important;
}
.sendBtn:hover 
{
	color: #000 !important;
}
.sendBtn:hover i 
	{
  		opacity: 1;
    	transform: translateY(-50%) translateX(-500%) !important;
    	visibility: visible;
    }                          
.registerBtn
{
	background: linear-gradient(to right, #ffd700 50%, #000 0%);
	background-size: 200% 100%;
	background-position: right;
	transition: all .5s ease-in-out;
	padding:10px 30px 8px 30px !important;
	border-radius: 30px !important;
	color: #ffd700 !important;
	width: 100%;
	border: 1px solid #000 !important;
}
.registerBtn:hover 
{
	background-position: left;
	color: #000 !important;
	border: 1px solid #ffd700 !important;
}


/* login code  */

.login-method-switch button {
    padding: 10px 20px 8px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
	width: 100%;
	display: inline-block;
	margin-top: 30px;
	border-radius: 30px;
	transition: all .5s ease-in-out;
	border: 1px solid #000;
	font-weight: 600;
}
.login-method-switch button:hover 
{
	background-color: #000;
	color: #ffd700;
	
}
.login-method-switch button.active {
    background: #ffd700;
    color: #000;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	border: 1px solid #ffd700 !important;
	padding: 10px 20px 5px 20px;
}
.login-section {
    margin-top: 15px;
}
.title-font 
{
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
}

.custom-otp-box
{
	border:1px solid #A32626;
	color: #A32626;
	border-radius: 30px;
	display: inline-flex;
	padding: 10px 20px 6px 20px;
	cursor: pointer !important;
	transition: all .5s ease-in;
}
.custom-otp-box label 
{
	cursor: pointer !important;
}
.custom-otp-box:hover 
{
	background-color: #000;
	color: #ffd700;
	border: 1px solid #000;
}
#form-msg 
{
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	margin-bottom: 15px;
}