/* Registration Form Styles - Matching Login Form */
.register-container {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Registration Form */
.register-form-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: #1c2238;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.register-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #CC9D6A, #e0b382);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-title {
    color: #CC9D6A;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.register-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 400;
}

.section-title {
    color: #CC9D6A;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #CC9D6A, rgba(204, 157, 106, 0.1));
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.form-group.focused .label-text {
    color: #CC9D6A;
    font-weight: 600;
}

.form-group.focused .field-description {
    color: rgba(204, 157, 106, 0.7);
}

.form-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.label-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    flex: 1;
    width: 100%;
}

.form-control-custom {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) inset;
}

.form-control-custom:focus {
    outline: none;
    border-color: #CC9D6A;
    box-shadow: 0 0 0 2px rgba(204, 157, 106, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1) inset;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-control-custom:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 157, 106, 0.5);
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.input-group {
    position: relative;
    display: flex;
    width: 100%;
}

.input-group-addon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.password-input-container {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.currency-display {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    cursor: not-allowed;
    background-color: rgba(204, 157, 106, 0.1) !important;
    border-color: rgba(204, 157, 106, 0.3) !important;
}

.currency-display span {
    color: rgba(255, 255, 255, 0.8);
}

.password-toggle:hover {
    color: #CC9D6A;
}

.password-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-input {
    width: 1rem;
    height: 1rem;
    accent-color: #CC9D6A;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.register-btn {
    width: 100%;
    padding: 1rem;
    background-color: #CC9D6A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.register-btn:hover {
    background-color: #b8895a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.register-btn i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    vertical-align: middle;
}

.terms-notice {
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
}

.terms-notice p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.register-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-note {
    background-color: rgba(204, 157, 106, 0.08);
    border-left: 3px solid #CC9D6A;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.registration-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.login-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.login-link {
    color: #CC9D6A;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #b8895a;
    text-decoration: underline;
}

.field-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.info-box {
    background-color: rgba(204, 157, 106, 0.1);
    border: 1px solid rgba(204, 157, 106, 0.3);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '\f05a'; /* Font Awesome info icon */
    font-family: 'FontAwesome';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #CC9D6A;
    font-size: 1.5rem;
    opacity: 0.2;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

/* Two column layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.form-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.form-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .register-container {
        padding: 1rem 0.5rem;
    }
    
    .register-form-container {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .register-title {
        font-size: 1.75rem;
    }
    
    .form-col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
