@font-face {
    font-family: 'radar2';
    src: url('../fonts/radar2.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'radar3';
    src: url('../fonts/radar3.woff') format('woff');
    font-style: normal;
}

.rn-otp-auth-form,
.rn-form-group {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 20, 60, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    direction: ltr;
    text-align: left;
    font-family: 'radar2', sans-serif;
}

.rn-input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 20, 60, 0.2);
    border-radius: 6px;
    margin-bottom: 15px;
    background: #ffffff;
    color: #00143c;
    transition: all 0.3s ease;
    font-family: 'radar2', sans-serif;
}

.rn-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    outline: none;
}

.rn-button {
    background: linear-gradient(135deg, #00143c 0%, #002060 100%);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'radar3', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.rn-button:hover {
    background: linear-gradient(135deg, #002060 0%, #00143c 100%);
    box-shadow: 0 5px 15px rgba(0, 20, 60, 0.5);
    transform: translateY(-2px);
}

.rn-button.rn-action-button {
    outline: none !important;
    box-shadow: none !important;
    background: linear-gradient(135deg, #00143c 0%, #002060 100%) !important;
}

.rn-button.rn-action-button::-webkit-autofill-button,
.rn-button.rn-action-button::-webkit-credentials-auto-fill-button {
    display: none !important;
}

.rn-button.rn-action-button:disabled {
    background: #cccccc !important;
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.rn-otp-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #00143c;
    font-family: 'radar2', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 20, 60, 0.05);
    background: #f8f9fa;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: none;
}

.rn-otp-message.has-message {
    display: block;
}

.rn-otp-message .rn-success {
    background: #e6ffe6;
    color: #008000;
    padding: 10px;
    border-radius: 6px;
}

.rn-otp-message .rn-error {
    background: #ffe6e6;
    color: #800000;
    padding: 10px;
    border-radius: 6px;
}

.rn-otp-timer {
    font-family: 'radar2', sans-serif;
    font-size: 12px;
    color: #00143c;
    background: #e6e6e6;
    padding: 4px 8px;
    border-radius: 4px;
}

.rn-login-label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 600;
    color: #00143c;
    font-size: 14px;
    font-family: 'radar2', sans-serif;
}