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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-container {
    width: 100%;
    max-width: 450px;
}

.register-card {
    background: rgba(18, 18, 24, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.big-c {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.clutch {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 0.5px;
}

.incorporated {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.5px;
}

.register-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
}

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

.input-group label {
    display: block;
    color: #aaa;
    font-size: 13px;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.input-group input::placeholder {
    color: #555;
}

.register-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border: none;
    border-radius: 30px;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.register-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.login-link {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

.login-link a {
    color: #ffd700;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    color: #ff6666;
    font-size: 13px;
    text-align: center;
    margin-top: 15px;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    color: #00ff00;
    font-size: 13px;
    text-align: center;
    margin-top: 15px;
}