/* Registration & Login Form Container */
.ars-register-form {
    max-width: 480px;
    margin: 40px auto;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ars-register-form p { margin-bottom: 20px; }
.ars-register-form label { font-weight: 500; font-size: 14px; display: block; margin-bottom: 6px; }
.ars-register-form input, .ars-register-form textarea {
    width: 100%;
    padding: 14px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
    transition: border 0.3s, box-shadow 0.3s;
}
.ars-register-form input:focus, .ars-register-form textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
    outline: none;
}
/* Submit button */
.ars-register-form .ars-btn {
    width: 100%;
    background: #0073aa;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.ars-register-form .ars-btn:hover { background: #005177; }
/* Tabs */
.ars-tab-links {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
}
.ars-tab-link {
    flex: 1;
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s;
}
.ars-tab-link.active {
    background: #0073aa;
    color: #fff;
    border-bottom: none;
}
.ars-tab-content { display: none; }
.ars-tab-content.active { display: block; }
/* Responsive */
@media (max-width: 600px) {
    .ars-register-form {
        padding: 25px 20px;
        margin: 20px;
    }
    .ars-register-form .ars-btn {
        font-size: 15px;
        padding: 12px;
    }
    .ars-tab-link { font-size: 14px; padding: 10px; }
}
