.custom-otp-login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 50px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.otp-login-form h6 {
    text-align: center;
    padding-bottom: 10px;
}

.otp-login-form .form-group select {
    padding: 1em 0.8em !important;
    border-radius: 50px !important;
    text-align: center !important;
    background-position-x: calc(100% - 15px) !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.otp-login-form .form-group option {
	text-align: center !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.otp-login-form .form-group input {
    border-radius: 50px !important;
    text-align: center !important;
}

.otp-login-form h4 {
    text-align: center;
    margin-bottom: 0px !important;
    color: #333;
}

.otp-step {
    display: none;
}

.otp-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.policy-link {
    color: #007cba;
    text-decoration: underline;
}

.policy-link:hover {
    text-decoration: none;
    color: #005a87;
}

.checkbox-group label {
	padding-left: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    text-align: center;
    padding-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.btn {
    padding: 13px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-primary {
    background: #3a3a3a;
    color: white;
    width: 60%;
	transition: transform 0.3s ease-in-out;
}

.otp-login-form .otp-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
}

.otp-login-form .otp-buttons-grp {
    display: flex;
    padding-top: 10px;
    gap: 16px;
}

.btn-primary:hover:not(:disabled) {
    background: #3a3a3a;
    color: #fff;
    transform: scale(1.1);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-primary:focus {
    background: #3a3a3a !important;
    color: #fff !important;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.otp-message {
    margin-top: 15px;
	margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.otp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.otp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.logged-in .user-dashboard-container .dashboard-buttons {
	display: flex;
    padding-top: 16px;
	gap: 16px;
}

.logged-in .user-dashboard-container .dashboard-buttons a {
	text-align: center !important;
	padding: 8px 20px !important;
	justify-content: center;
    display: flex;
    flex-direction: column;
}

.logged-in .user-dashboard-container .dashboard-buttons .logout-btn {
	background: #ffffff !important;
	color: #3a3a3a !important;
	border: 1px solid #3a3a3a !important;
}

.otp-buttons-grp #back-to-phone {
	background: #ffffff !important;
	color: #3a3a3a !important;
	border: 1px solid #3a3a3a !important;
}

/* Responsive design */
@media (max-width: 480px) {
    .custom-otp-login-container {
        margin: 20px;
        padding: 15px;
    }
    
    .btn {
        width: 100%;
        margin-right: 0;
    }
}