
#number {
	width: 100%;
	margin-left: -10px;
	padding: 10px;
}

#inputState {
	padding: 10px;
	margin-right: 0px;
	font-size: 16px;
	color: #c7c7c7;
	border-radius: 4px;
	outline: none;
	transition: background-color 0.2s ease;
}
/* Button styles */

button:hover {

	opacity: 0.9;
}

button:focus {
	box-shadow: 0px 0px 0px 1px #ffffff;
}

.login-container {
	display: inline-block;
	text-align: left;
}

.google-button {
	border: none;
	background-color: transparent;
	padding: 0;
	cursor: pointer;
	transition: transform 0.2s;
}

.google-button img {
	border-radius: 50%;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.google-button:hover {
	transform: scale(1.2);
}

a.custom-link:hover {
	color: blue;
}

.navigation-buttons {
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

.prev, .next {
	padding: 5px 10px;
	font-size: 14px;
	
	color: #f4f4f4;
	border: none;
	border-radius: 4px;
}

.prev:hover, .next:hover {
	
	opacity: 0.9;
}

/* Reset default styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Global styles */
.otp-form {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 400px;
	width: 100%;
}

h2 {
	margin-bottom: 20px;
	color: #333;
}

/* OTP input styles */
.otp-container, .email-otp-container {
	/* 	display: flex;
	justify-content: center; */
	
}

/* Signup modal button */

.otp-input, .email-otp-input {
	width: 40px;
	height: 40px;
	border-radius: 15px;
	text-align: center;
	font-size: 18px;
	margin-right: 22px;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	color:black;
	transition: border-color 0.3s;
}

.otp-input:focus, .email-otp-input:focus {
	border-color: #007bff;
}

#verificationCode, #emailverificationCode {
	width: 100%;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	transition: border-color 0.3s;
}

#verificationCode:focus, #emailverificationCode:focus {
	border-color: #007bff;
}



