* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

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

/* Left side - Form Section */
.form-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.logo {
    width: 200px;
    height: 60px;
    background-color: #2a5d3a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 10px;
}

.logo-icon {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.get-started {
    text-align: center;
    margin-bottom: 30px;
}

.get-started h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
}

.get-started p {
    color: #666;
    font-size: 14px;
}

.form-wrapper {
    width: 100%;
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2a5d3a;
    box-shadow: 0 0 0 2px rgba(42, 93, 58, 0.2);
}

button[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #112c4a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button[type="submit"]:hover {
    background-color: #112c4a;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.form-footer a {
    color: #112c4a;
    text-decoration: none;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Right side - Promotional Section */
.promo-section {
    flex: 1;
    background: linear-gradient(135deg, #11344a 0%, #14202e 100%);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.promo-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
}

.promo-card {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 300px;
    height: 200px;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.promo-card-logo {
    width: 40px;
    height: 40px;
    background-color: #2a5d3a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 10px;
}

.promo-card-logo span {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.promo-card-balance {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.promo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.promo-card-details {
    font-size: 14px;
    color: #666;
}

.promo-card-details strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.promo-card-button {
    background-color: #f5f5f5;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
}

.promo-card-button:hover {
    background-color: #e9e9e9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .signup-container {
        flex-direction: column;
    }
    
    .form-section, .promo-section {
        padding: 20px;
    }
    
    .promo-content h1 {
        font-size: 32px;
    }
    
    .promo-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}