/**
 * Custom Registration Page Styles
 */

.qr-register-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.qr-register-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 50px;
    max-width: 550px;
    width: 100%;
}

/* Header */
.qr-register-header {
    text-align: center;
    margin-bottom: 40px;
}

.qr-register-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 20px;
}

.qr-register-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.qr-register-header h1 {
    font-size: 32px;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.qr-register-header p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
}

/* Error Messages */
.qr-register-errors {
    background: #ffebee;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.qr-register-errors .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.qr-register-errors ul {
    margin: 10px 0 0 0;
    padding-left: 30px;
}

.qr-register-errors li {
    margin: 5px 0;
}

/* Form */
.qr-register-form {
    margin-bottom: 30px;
}

.qr-form-group {
    margin-bottom: 25px;
}

.qr-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.qr-form-group label .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: #667eea;
}

.qr-form-group input[type="text"],
.qr-form-group input[type="email"],
.qr-form-group input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.qr-form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.qr-form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #7f8c8d;
}

/* Terms Checkbox */
.qr-terms-group {
    margin: 30px 0;
}

.qr-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #2c3e50;
}

.qr-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.qr-checkbox-label a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.qr-checkbox-label a:hover {
    text-decoration: underline;
}

/* Register Button */
.qr-register-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qr-register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.qr-register-button .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Footer */
.qr-register-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.qr-register-footer p {
    margin: 10px 0;
    color: #7f8c8d;
    font-size: 15px;
}

.qr-register-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.qr-register-footer a:hover {
    text-decoration: underline;
}

.qr-back-link {
    font-size: 14px !important;
    margin-top: 20px !important;
}

/* Responsive */
@media (max-width: 600px) {
    .qr-register-card {
        padding: 30px 25px;
    }
    
    .qr-register-header h1 {
        font-size: 26px;
    }
}