body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.signup-container {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.signup-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.1);
}

.tag-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #f1f3f5;
    border: 1px solid #e1e5e9;
    border-radius: 20px;
    font-size: 14px;
    color: #495057;
}

.tag i {
    margin-left: 8px;
    cursor: pointer;
    font-size: 12px;
}


.tag.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.btn-signup {
    background-color: #6c5ce7;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-weight: 600;
    color: white;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
}

.btn-signup:hover {
    background-color: #5a4fcf;
    color: white;
}

.signin-link {
    text-align: left;
    margin-top: 20px;
    color: #6c757d;
    font-size: 14px;
}

.signin-link a {
    color: #6c5ce7;
    text-decoration: none;
}

.profile-section {
    background-color: #f8f9fa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.profile-upload {
    position: relative;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background-color: #adb5bd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.profile-camera {
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 35px;
    height: 35px;
    background-color: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-camera i {
    color: white;
    font-size: 16px;
}

.upload-btn {
    background-color: #495057;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

.upload-btn:hover {
    background-color: #343a40;
    color: white;
}