/* Main container */
.sign-up {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 45px;
    background-color: #fff;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 40px;
    box-sizing: border-box;
    gap: 20px;
    text-align: left;
    font-size: 14px;
    color: #464646;
    font-family: Mulish;
}

/* Title */
.sign-up2 {
    width: 100%;
    font-size: 32px;
    font-family: Baloo;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 10px;
}

/* Divider sections */
.auto-layout-horizontal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    font-size: 18px;
    color: #666;
    margin: 10px 0;
}

.themelight-divider {
    flex: 1;
    height: 1px;
    position: relative;
}

.line,
.line3 {
    width: 100%;
    border-top: 1px solid #eee;
    box-sizing: border-box;
    height: 1px;
}

.or-continue-with {
    white-space: nowrap;
    letter-spacing: 0.2px;
    line-height: 140%;
    padding: 0 10px;
}

/* Form styling */
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Input field wrapper */
.input-field-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-field {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* All input fields */
.input-field-inner {
    width: 100%;
    border-radius: 25px;
    background-color: #fff;
    border: 1px solid #eaecf0;
    box-sizing: border-box;
    padding: 14px 19px;
    font-size: 14px;
    color: #464646;
    font-family: Mulish;
    outline: none;
}

.input-field-inner:focus {
    border-color: #f46262;
}

/* Error styling */
.error {
    color: #f46262;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 10px;
}

.error-input {
    border-color: #f46262 !important;
}

.alert {
    width: 100%;
    padding: 12px 19px;
    border-radius: 25px;
    font-size: 14px;
}

.alert-error {
    background-color: #ffe5e5;
    color: #f46262;
    border: 1px solid #f46262;
}

/* Dropdown parent container */
.input-field-parent {
    width: 100%;
    position: relative;
    margin: 0;
}

.input-field7 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Dropdown select */
.dropdown-select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #464646;
    background-color: transparent;
    font-family: Mulish;
    appearance: none;
    cursor: pointer;
    padding-right: 35px;
}

/* Chevron icon for dropdown */
.chevron-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.chevron-down .icon {
    width: 100%;
    height: 100%;
}

/* File input styling */
input[type="file"] {
    padding-right: 45px;
}

input[type="file"]::file-selector-button {
    display: none;
}

/* Camera icon for file input */
.camera-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
}

/* Sign up button wrapper */
.sign-in-button-wrapper {
    width: 100%;
    margin-top: 10px;
}

.sign-in-button {
    width: 100%;
    height: 58px;
    position: relative;
    border: none;
    cursor: pointer;
    padding: 0;
    background: transparent;
}

.sign-in-button-child {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 25px;
    background-color: #f46262;
    z-index: 1;
}

.button {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-family: Mulish;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.sign-in-button:hover .sign-in-button-child {
    background-color: #e94b4b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sign-up {
        max-width: 100%;
        padding: 30px 25px;
        border-radius: 30px;
        margin: 10px;
    }
    
    .sign-up2 {
        font-size: 28px;
    }
    
    .or-continue-with {
        font-size: 16px;
    }
    
    .input-field-inner {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .button {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .sign-up {
        padding: 25px 15px;
        border-radius: 25px;
        gap: 16px;
    }
    
    .sign-up2 {
        font-size: 24px;
    }
    
    .or-continue-with {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .auto-layout-horizontal {
        gap: 10px;
    }
    
    .input-field-inner {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .dropdown-select {
        font-size: 13px;
        padding-right: 30px;
    }
    
    input[type="file"] {
        padding-right: 40px;
        font-size: 12px;
    }
    
    .sign-in-button {
        height: 52px;
    }
    
    .button {
        font-size: 16px;
    }
    
    .camera-icon,
    .chevron-down {
        width: 18px;
        height: 18px;
        right: 12px;
    }
}

@media (max-width: 360px) {
    .sign-up {
        padding: 20px 12px;
    }
    
    .sign-up2 {
        font-size: 22px;
    }
    
    .input-field-inner {
        padding: 10px 12px;
        font-size: 12px;
    }
}