/* Add this to your plugin's CSS file (woocommerce-otp-login.css) */
#otp-message.success {
    color: green;
    border-color: green;
    margin: 4px !important;
    background-color: #e6ffe6;
}
#otp-message {
    padding: 6px 8px; 
    border: 1px solid;
    border-radius: 5px;
    display: none;
    font-size: 14px;
	    line-height: 18px;

	
}

#otp-message.error {
    color: red;
    border-color: red;
    background-color: #ffe6e6; /* Light red background for error */
}
#otp-code,
#phone-number { 
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 10px;
	max-width:260px;
}
#otp-code {
    margin-top: 8px;
}
#otp-code,
#phone-number:focus {
	    outline: solid 1px #898484;
}/* Initial styles for the phone number input */
#phone-number {
    border: 1px solid #ccc; /* Default border */ 
    outline: none;
    transition: border-color 0.3s ease-in-out; /* Smooth transition effect */
}

/* Valid state */
#otp-code.valid,
#phone-number.valid {
    border-color: green; /* Green border for valid input */
}

/* Invalid state */
#otp-code.invalid,
#phone-number.invalid {
    border-color: red; /* Red border for invalid input */
}
#otp-login-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 6px 0px;
    background-color: #e6e6e6;
    border-radius: 8px;
	flex-direction: column; 
}
#otp-login-form button{
    border: none;
    background-color: #3092af;
    border-radius: 4px;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    line-height: initial; 
    padding: 6px;
    transition: all ease .3s;
	margin:0;
}
#otp-login-form button {
    background-color: #387193;
} 
#otp-login-form button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
	cursor:default;
	
}
.otp-login-title {
    padding: 8px;
    margin: 6px; 
	text-align:center;
	font-size:1.1rem;
}

 .show-otp-btn-form button {
    border: var(--primary-color) 1px solid;
    color: var(--primary-color);
    margin: 0;
    min-width: 240px;
	 font-size:0.9rem;
}

.show-otp-btn-form {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}
button#show-otp-form-button:hover {
    color: white;
    background-color: var(--primary-color);
}
div#login-form-popup .woocommerce {
    padding: 8px 0;
}

#otp-login-form button#close-otp-form-button {
    background-color: unset;
    color: red;
	padding: 0px 8px;
	position:absolute;
	right: 5px;
	top: 0;
}
#otp-login-form button#close-otp-form-button:hover {
    background-color: red;
    color: white;
}
.close-btn-container{
	width:100%;
	position:relative;
}
.close-btn-container {
    height: 26px;
}

@media only screen and (max-width : 640px) {

	 
}