* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
}

.register-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 20px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.left-section {
    flex: 1;
    padding: 40px;
    position: relative;
    background: url(login_bg.png) no-repeat center center;
    background-size: cover;
    height: 700px;
}

.left-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
    padding-bottom: 20px;
    border-bottom: #00b897 3px solid;
    width: 40px;
    overflow: visible;
    white-space: nowrap;
}

.left-section h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.rewards-info {
    margin-bottom: 40px;
}

.rewards-info p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.features {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: left;
}

.feature-value {
    font-size: 24px;
    font-weight: bold;
    color: #00b897;
    margin-bottom: 8px;
}

.feature-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.right-section {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 20px;
}

.right-section h1 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
}

.input-group select {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #666;
    font-size: 14px;
    padding: 4px;
}

.agreement {
    margin-bottom: 30px;
}

.agreement label {
    display: block;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.agreement input[type="checkbox"] {
    margin-right: 8px;
}

.agreement a {
    color: #00b897;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn img {
    width: 24px;
    height: 24px;
}

.other-options {
    text-align: center;
    margin-bottom: 30px;
}

.other-options p {
    color: #666;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.login-link {
    text-align: center;
    color: #666;
}

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

@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
        height: 100%;
        justify-content: flex-start;
        margin-top: 64px;
        margin-bottom: 64px;
        border-radius: 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-start;
        width: 100%;
        margin: 0;
    }
    .features{
        display: none;  
    }
    .left-section {
        height: 300px;
        background-size: cover;
        flex: none;
    }
    .left-section h2{
        font-size: 16px;
    }
    .left-section h3{
        font-size: 20px;
    }
    .right-section {
        padding: 30px 40px;
    }
    .right-section h1 {
        font-size: 20px;
    }
    
    
    
}

