* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #1f2937;
}

.register-container {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.register-info {
    background: #071a2f;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.brand h1 {
    font-size: 34px;
}

.brand span {
    color: #d4af37;
}

.register-info-content {
    margin: auto 0;
    max-width: 520px;
}

.register-info-content .subtitle {
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: bold;
}

.register-info-content h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.register-info-content p {
    color: #d9e2ec;
    line-height: 1.7;
}

.register-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.register-card {
    width: 100%;
    max-width: 480px;
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.register-header {
    margin-bottom: 25px;
}

.register-header h2 {
    color: #071a2f;
    font-size: 28px;
}

.register-header p {
    color: #6b7280;
    margin-top: 6px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: bold;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
}

.form-group input:focus {
    border-color: #123f68;
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 4px;
    color: #6b7280;
}

.password-toggle:hover {
    color: #123f68;
}

.btn-register {
    width: 100%;
    border: none;
    background: #123f68;
    color: white;
    padding: 13px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-register:hover {
    background: #071a2f;
}

.success-message {
    display: none;
    margin-top: 18px;
    padding: 13px;
    background: #dcfce7;
    color: #166534;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.back-login {
    margin-top: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.back-login a {
    color: #123f68;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 800px) {

    .register-container {
        grid-template-columns: 1fr;
    }

    .register-info {
        display: none;
    }

}