﻿body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f7f8fb;
}
/* HEADER */
.register-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 20px;
}
    .register-header .inner {
        max-width: 1100px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
.brand {
    font-weight: 800;
    text-decoration: none;
    color: #111;
    font-size: 18px;
}
/* PAGE CENTER */
.register-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.register-container {
    width: 100%;
    max-width: 460px;
}
.register-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* TITLE */
h1 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #111;
}
.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
/* FIELD */
.field {
    margin-bottom: 15px;
}
    .field label {
        font-size: 13px;
        font-weight: 600;
        display: block;
        margin-bottom: 6px;
    }
.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}
    .form-control:focus {
        border-color: #264eff;
        box-shadow: 0 0 0 3px rgba(38,78,255,0.1);
    }
/* BUTTON */
.btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}
.btn-primary {
    background: #264eff;
    color: #fff;
}
    .btn-primary:hover {
        background: #1f3fe0;
    }
/* ERROR */
.form-error {
    font-size: 13px;
    font-weight: 600;
    color: #d97706;
    background: rgba(247, 167, 34, 0.12);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}
/* LINK */
.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}
    .login-link a {
        color: #264eff;
        font-weight: 700;
        text-decoration: none;
    }
/* MOBILE */
@media (max-width: 768px) {
    .register-card {
        padding: 20px;
        border-radius: 12px;
    }
    h1 {
        font-size: 20px;
    }
    .subtitle {
        font-size: 13px;
    }
}
/* RTL FIX */
[dir="rtl"] body {
    text-align: right;
}
[dir="rtl"] .register-header .inner {
    flex-direction: row-reverse;
}
a:link {
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
}