/* Container */
.ndrip-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px #a6a3a2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.ndrip-center-text {
    text-align: center;
}

/* Headings */
.ndrip-container h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #000;
}

.ndrip-container p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Alert Bars */
.ndrip-alert {
    padding: 20px; /* Increased padding */
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.ndrip-alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.ndrip-alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.ndrip-alert a {
    font-weight: bold;
    color: inherit;
    text-decoration: underline;
}

/* Form Elements */
.ndrip-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ndrip-row {
    display: flex;
    gap: 15px;
}

.ndrip-field-half {
    width: 50%;
}

.ndrip-field {
    width: 100%;
}

.ndrip-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

/* General Input Styling */
.ndrip-form input[type="text"],
.ndrip-form input[type="email"],
.ndrip-form input[type="password"] {
    width: 100%;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

/* Phone row */
.ndrip-phone-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Country select box */
.ndrip-country-wrap {
    width: 35%;
	text-align: center;
}

#ndrip-country-code {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

/* Phone input */
.input-phone {
    width: 72%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}


/* Button */
.ndrip-btn {
    width: 100%;
    padding: 15px; /* Height adjustment via padding */
    border: none;
    border-radius: 50px; /* Border radius 50px */
    color: #fff; /* Text color white */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
}

.ndrip-btn-gradient {
    /* Gradient Pink to greenish-grey */
    background: linear-gradient(90deg, #ff0066 0%, #a2a2a2 100%);
}

/* Disable Hover Effects as requested */
.ndrip-btn:hover {
    background: linear-gradient(90deg, #ff0066 0%, #a2a2a2 100%); /* Same as normal */
    transform: none;
}

/* Links */
.ndrip-container a {
    color: #ff0066;
    text-decoration: none !important; /* No underline */
    font-weight: 500;
}

.ndrip-container a:hover {
    text-decoration: none !important;
}

/* Divider */
.ndrip-divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
    color: #999;
    font-size: 14px;
}

.ndrip-divider:before,
.ndrip-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #eee;
}

.ndrip-divider:before { left: 0; }
.ndrip-divider:after { right: 0; }

/* Login Link */
.ndrip-login-link {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
}

/* OTP Inputs */
.ndrip-otp-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
}

.ndrip-otp-input {
    width: 45px !important;
    height: 45px;
    text-align: center;
    font-size: 20px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
}

.ndrip-timer {
    text-align: left;
    font-size: 12px;
    color: #666;
    margin-top: -10px;
}

/* Password wrapper for eye icon */
.ndrip-password-wrapper {
    position: relative;
}

.ndrip-eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #999;
}