.signup-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    display: flex;
}
.left-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.right-side {
    flex: 1;
    padding: 20px;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    background: #fff;
    padding: 2px 5px;
    transition: 0.3s ease-in-out;
    pointer-events: none;
}
.form-control {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #000;
}
.form-control:focus {
    background-color: #fff;
    border-color: #000;
    outline: none;
}


/* 🔹 Move label UP when input is focused OR has text */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label,
.form-select:valid ~ .form-label {
    top: -10px;
    left: 12px;
    font-size: 14px;
    color: #000;
    background: #fff;
    padding: 0 5px;
}

/* 🔹 Password toggle icon */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.form-select {
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}
.d-flex.gap-2 select {
    flex: 1;
}
.social-login a {
    width: 100px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 0 5px;
    font-size: 18px;
}

.modal-header h5 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}
.modal-body {
    font-size: 16px;
}
.field-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.field {
    width: 48%;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}
.field label {
    font-weight: bold;
    display: block;
}