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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    margin: 0;
}

.signup-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Left Section - Illustration */
.left-section {
    flex: 1;
    background: linear-gradient(135deg, #0f1729 0%, #1a2744 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.illustration {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Right Section - Form */
.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #ffffff;
}

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

.form-header {
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: #666666;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-bottom-color: #000000;
}

.form-control::placeholder {
    color: #999999;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000000;
}

.checkbox-group label {
    font-size: 14px;
    color: #666666;
    cursor: pointer;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #000000;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn-primary:hover {
    background: #333333;
}

.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.google-btn:hover {
    border-color: #4285f4;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.1);
    text-decoration: none;
    color: #333;
}

.signin-link {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.signin-link a {
    color: #000000;
    text-decoration: underline;
    font-weight: 500;
}

.signin-link a:hover {
    color: #333333;
}

/* Responsive */
@media (max-width: 1024px) {
    .signup-wrapper {
        flex-direction: column;
    }

    .left-section {
        min-height: 300px;
        padding: 40px 20px;
    }

    .logo {
        top: 20px;
        left: 20px;
    }

    .illustration {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .right-section {
        padding: 40px 20px;
    }

    .form-header h1 {
        font-size: 28px;
    }
}