
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: -0.7;
    height: 100vh;
    margin: 0;
    display: flex;
}
/* logo part side */
.header {
    position: absolute; 
    top: 20px;
    left: 20px;
    z-index: 10; 
}

.logo {
    width: 50px;
    height: auto; 
}
.container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Left Section */
.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    flex-grow: 1.5;
}

.form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.029);
    padding: 50px;
    width: 100%;
    max-width: 700px;
}

form {
    display: block;
}

h2 {
    margin-bottom: 10px;
    color: #141b4c;
    letter-spacing: -1.0px;
    font-size: 25px;
}

.body-text{
    font-size: 15px;
    font-weight: 400;
    color: #1b2044;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
    color: #1b2044;
}

input {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 1px solid #d4dae3;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}


select {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: white;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-image: none;
}

select:focus {
    border-color: orange;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
    outline: none;
}

select option {
    padding: 10px;
    font-size: 14px;
}

    select option[data-icon]::before {
        content: url(/Content/Tansian/path-to-icons/flag-placeholder.png);
        width: 20px;
        height: 20px;
        margin-right: 10px;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
    }

select + .error-message {
    color: red;
    font-size: 12px;
    display: none;
}


input:focus {
    border-color: orange;
}

.error-message {
    color: red;
    font-size: 12px;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 30px;
    border: none;
    background: orange;
    color: white;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: darkorange;
}

.hidden {
    display: none;
    text-align: center;
}

.hidden-div{
    display: flex;
    justify-content: cneter;
}

.header-area{

    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.go-back-area{
    display: flex;
    justify-content: center;

}
.go-back-btn {
    
    margin-top: 30px;
    padding: 10px 15px;
    background: orange;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 50%;
}

.formbox{
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; 
}


/* Right Section */
.right-section {
    margin: 20px;
    flex: 1;
    position: relative;
    background: url('/Content/Tansian/background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.glass-card {
    position: relative; 
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    width: 90%; 
    max-width: 600px; 
    margin-bottom: 20px; 
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}


.glass-bottom-text{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-top: 20px !important;
    margin-bottom:10px !important;
}

.avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px !important;
    margin-bottom:10px !important;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white; 
    object-fit: cover; 
    margin-left: -10px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease;
}

.avatar:first-child {
    margin-left: 0; 
}

.avatar:hover {
    transform: scale(1.1); 
    z-index: 1; 
}


@media (max-width: 768px) {
    
    .container {
        flex-direction: column;
        margin-top: 50px;
    }

    
    .left-section, .right-section {
        flex: none !important;
        width: 100%;
        margin: 0;
        padding: 20px;
    }

    
    .form-card {
        padding: 30px 20px;
        box-shadow: none;
        border-radius: 0;
        max-width: 100%;
    }

    
    input, select {
        height: 45px;
        font-size: 14px;
    }

    
    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }

    .go-back-btn {
        font-size: 14px;
        padding: 10px;
    }

    
    .right-section {
        justify-content: center;
        align-items: center;
        padding: 20px;
        border-radius: 0;
    }

    .glass-card {
        padding: 15px;
        text-align: center;
        max-width: 90%;
    }

    
    .avatar-group {
        margin-top: 15px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-left: -8px;
    }
}


@media (max-width: 480px) {
    
    .form-card {
        padding: 20px;
    }

    .glass-card {
        padding: 10px;
    }

    .submit-btn, .go-back-btn {
        font-size: 12px;
        padding: 8px;
    }

    input, select {
        font-size: 12px;
    }

    h2 {
        font-size: 20px;
    }

    .glass-bottom-text {
        font-size: 14px;
    }

    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -6px;
    }
}


/* Increase height of select field */
.select2-container .select2-selection--single {
    height: 50px !important; 
    display: flex;
    align-items: center; 
    border: 1px solid #d4dae3 !important;
    border-radius: 10px !important;  
    
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px !important;    
    font-size: 14px;               
    padding-left: 12px;   
    border: none;
    border-radius: 10px;     
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important; 
}

#price-display {
  margin-top: 20px;
  text-align: center;
}

#price-text {
  font-size: 25px;  
  letter-spacing: -1px;
  font-weight: bold;
  color: #0054fd;   
}