.main-register {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    direction: ltr;
    text-align: left;
}

.password-wrapper input {
    flex: 1;
    padding-left: 40px !important;
}

.toggle-password {
    position: absolute;
    left: 12px;
    cursor: pointer;
    color: #888;
    font-size: 18px;
    background: none;
    border: none;
    z-index: 10;
}

.toggle-password:hover {
    color: #333;
}

.captcha-wrapper {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.captcha-code {
    font-family: 'Courier New', monospace;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 8px;
    background: #2c3e50;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    user-select: none;
}

.captcha-refresh {
    background: #6c757d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 10px;
}

.captcha-refresh:hover {
    background: #5a6268;
}

.captcha-input {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
}

.main-register .btn-success {
    margin-top: 10px;
}

.login-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

.error {
    color: #dc3545;
    background: #f8d7da;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

/* استایل‌های ریسپانسیو */
@media (max-width: 768px) {
    .main-register {
        width: 90%;
        padding: 20px;
    }
}