
@font-face {
    font-family: 'NexaLight';
    src: url('https://cooking-ina-website-i68r.vercel.app/fonts/nexalight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'MoreSugar';
    src: url('https://cooking-ina-website-i68r.vercel.app/fonts/MoreSugar-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF4E8;
    font-family: 'MoreSugar', sans-serif;
    overflow: hidden;
    display: flex;
}

.signup-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.signup-left {
    width: 50%;
    height: 100vh;
    background: url('https://cooking-ina-website-i68r.vercel.app/img/signuppix.png') no-repeat center center;
    background-size: cover;
    background-position: center;
}

.signup-right {
    width: 50%;
    background-color: #FFF4E8;
    padding: 80px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.signup-right h1 {
    font-size: 65px;
    color: #37ABB0;
    margin-bottom: 1px;
}

.signup-right p {
    font-size: 40px;
    color: #37ABB0;
    margin-bottom: 50px;
}

.role-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.custom-radio {
    font-size: 22px;
    font-family: 'NexaLight';
    -webkit-text-stroke: 1px #37ABB0;
    color: #37ABB0;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

.custom-radio b {
    font-weight: bold;
    -webkit-text-stroke: 1px #37ABB0;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-mark {
    position: absolute;
    left: 0;
    top: 3px;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 2px solid #37ABB0;
    border-radius: 15px;
    transition: 0.3s ease;
}

.custom-radio input:checked + .radio-mark {
    background-color: #37ABB0;
    border: none;
}

.custom-radio input:checked + .radio-mark:after {
    display: block;
}

.signup-button-group {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.signup-cancel-btn, .signup-next-btn {
    width: 45%;
    padding: 12px;
    font-size: 27px;
    font-family: 'MoreSugar', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.signup-cancel-btn {
    background-color: #FFE29A;
    color: #37ABB0;
}

.signup-next-btn {
    background-color: #37ABB0;
    color: #FFE29A;
}

.signup-cancel-btn:hover {
    background-color: #f1d48a;
}

.signup-next-btn:hover {
    background-color: #2E9296;
}

@media (max-width: 1024px) {
    .signup-right {
        width: 55%;
        padding: 4vw;
    }

    .signup-right h1 {
        font-size: 3.5vw;
    }

    .signup-right p {
        font-size: 1.8vw;
    }

    .custom-radio {
        font-size: 1.5vw;
        padding-left: 40px;
    }

    .radio-mark {
        width: 20px;
        height: 20px;
        top: 2px;
    }

    .signup-button-group {
        width: 55%;
        margin-top: 8vh;
    }

    .signup-cancel-btn, .signup-next-btn {
        font-size: 1.3vw;
        padding: 0.8vw;
    }

    .signup-left {
        width: 45%;
        background-size: 80%;
    }
}

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

    .signup-left {
        display: none;
    }

    .signup-right {
        width: 100%;
        padding: 6vw;
        align-items: center;
        text-align: center;
    }

    .signup-right h1 {
        font-size: 5vw;
    }

    .signup-right p {
        font-size: 2.5vw;
    }

    .role-selection {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 15px;
        width: 100%;
    }

    .custom-radio {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1vw;
        padding-left: 0; 
        text-align: center;
        width: 80%;
    }

    .radio-mark {
        position: relative;
        width: 10px;
        height: 10px;
        margin-right: 10px;
    }

    .signup-button-group {
        width: 70%;
        flex-direction: column;
        gap: 15px;
    }

    .signup-cancel-btn, .signup-next-btn {
        width: 100%;
        font-size: 2vw;
        padding: 1.5vw;
    }
}

@media (max-width: 480px) {
    .signup-right {
        padding: 8vw;
    }

    .signup-right h1 {
        font-size: 6vw;
    }

    .signup-right p {
        font-size: 3vw;
    }

    .role-selection {
        align-items: center;
        width: 100%;
    }

    .custom-radio{
        font-size: 1vw;
        width: 90%;
    }

    .radio-mark {
        width: 10px;
        height: 10px;
        margin-right: 8px;
    }

    .signup-button-group {
        width: 80%;
    }

    .signup-cancel-btn, .signup-next-btn {
        font-size: 2.5vw;
        padding: 2vw;
    }
}

/* Allergies Tab */
.sup-allergies-right {
    width: 50%;
    background-color: #FFF4E8;
    padding: 80px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.sup-allergies-right h1 {
    font-size: 65px;
    color: #358D33;
    margin-bottom: 0;
}

.sup-allergies-right p {
    margin-top: 0;
    font-size: 40px;
    color: #358D33;
    margin-bottom: 30px;
}


.sup-allergy-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.sup-allergy-checkbox {
    font-size: 22px;
    font-family: 'NexaLight';
    color: #358D33;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

.sup-allergy-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.sup-allergy-checkmark {
    position: absolute;
    left: 0;
    top: 3px;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 2px solid #358D33;
    border-radius: 5px;
    transition: 0.3s ease;
}

.sup-allergy-checkbox input:checked + .sup-allergy-checkmark {
    background-color: #358D33;
    border: none;
}

.sup-allergy-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.sup-allergy-checkbox input:checked + .sup-allergy-checkmark:after {
    display: block;
}

/* Add form element reset first */
#allergy-form {
    all: initial; /* Reset form styles */
    display: block;
    width: 100%;
}

.sup-allergy-other {
    margin-top: 15px;
    width: 100%;
    margin-bottom: 25px;
    display: block;
    position: relative;
}

#allergy-form .sup-allergy-input {
    width: 100% !important;
    padding: 12px !important;
    font-size: 20px !important;
    font-family: 'NexaLight', sans-serif;
    color: #358D33;
    border: 2px solid #358D33 !important;
    border-radius: 10px;
    transition: border 0.3s ease;
    background: transparent;
    box-sizing: border-box; 
}

#allergy-form .sup-allergy-input:focus {
    border-color: #2B7329 !important;
    outline: none;
}

#allergy-form .sup-allergies-button-group {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

#allergy-form .sup-allergies-cancel-btn,
#allergy-form .sup-allergies-next-btn {
    width: 45% !important;
    padding: 12px !important;
    font-size: 27px !important;
    font-family: 'MoreSugar', sans-serif !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer;
    transition: 0.3s ease;
    box-sizing: border-box;
}

button {
    all: center;
    box-sizing: border-box;
}

input {
    box-sizing: border-box;
}

.sup-allergies-cancel-btn {
    background-color: #FFE29A;
    color: #358D33;
}

.sup-allergies-next-btn {
    background-color: #358D33;
    color: #FFE29A;
}

.sup-allergies-cancel-btn:hover {
    background-color: #ecd087;
}

.sup-allergies-next-btn:hover {
    background-color: #2B7329;
}

@media (max-width: 768px) {
    .sup-allergies-right {
        width: 100%;
        padding: 6vw;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sup-allergy-checkbox {
        justify-content: center;
        font-size: 1.8vw;
        padding-left: 30px;
    }

    .sup-allergies-right h1 {
        font-size: 5vw;
    }

    .sup-allergies-right p {
        font-size: 2.5vw;
    }

    .sup-allergy-selection {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .sup-allergy-checkbox {
        font-size: 1.8vw;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0;
        width: 100%;
    }

    .sup-allergy-checkmark {
        width: 10px;
        height: 10px;
        top: 2px;
    }

    .sup-allergy-other {
        width: 70%;
        text-align: center;
    }

    .sup-allergy-input {
        width: 100%;
        font-size: 1.5vw;
        padding: 1vw;
        text-align: center;
    }
   
    .sup-allergies-button-group {
        width: 70%;
        flex-direction: column;
        gap: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sup-allergies-cancel-btn, .sup-allergies-next-btn {
        width: 80%;
        font-size: 1.8vw;
        padding: 1vw;
    }
}

@media (max-width: 480px) {
    .sup-allergies-right {
        padding: 8vw;
    }

    .sup-allergies-right h1 {
        font-size: 6vw;
    }

    .sup-allergies-right p {
        font-size: 3vw;
    }

    .sup-allergy-selection {
        align-items: center;
        gap: 5px;
    }

    .sup-allergy-checkbox {
        font-size: 1.5vw;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }

    .sup-allergy-checkmark {
        width: 8px;
        height: 8px;
        top: 1px;
    }

    .sup-allergy-other {
        width: 80%;
        text-align: center;
    }

    .sup-allergy-input {
        font-size: 1.2vw;
        padding: 0.8vw;
        text-align: center;
    }

    .sup-allergies-button-group {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sup-allergies-cancel-btn, .allergies-next-btn {
        width: 100%;
        font-size: 1.5vw;
        padding: 1vw;
    }
}

/* Dislikes Form */
.sup-dislikes-right {
    width: 50%;
    background-color: #FFF4E8;
    padding: 80px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.sup-dislikes-right h1 {
    font-size: 65px;
    color: #DB4949;
    margin-bottom: 0;
}

.sup-dislikes-right p {
    margin-top: 0;
    font-size: 40px;
    color: #DB4949;
    margin-bottom: 30px;
}

#dislikes-form {
    all: initial;
    display: block;
    width: 100%;
}

#dislikes-form .sup-dislikes-input-container {
    width: 100%;
    margin-bottom: 25px;
}

#dislikes-form .sup-dislikes-input {
    width: 100% !important;
    padding: 16px !important;
    font-size: 22px !important;
    height: 30vh !important;
    font-family: 'NexaLight' !important;
    color: #DB4949 !important;
    border: 2px solid #DB4949 !important;
    border-radius: 12px;
    transition: border 0.3s ease;
    background: transparent;
    box-sizing: border-box; 
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
}

#dislikes-form .sup-dislikes-input::placeholder {
    text-align: left;
    vertical-align: top;
}

#dislikes-form .sup-dislikes-input:focus {
    border-color: #B83232 !important;
    outline: none !important;
}

#dislikes-form .sup-dislikes-button-group {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

#dislikes-form .sup-dislikes-cancel-btn,
#dislikes-form .sup-dislikes-next-btn {
    width: 45% !important;
    padding: 12px !important;
    font-size: 27px !important;
    font-family: 'MoreSugar', sans-serif !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer;
    transition: 0.3s ease;
    box-sizing: border-box; 
}


.sup-dislikes-cancel-btn {
    background-color: #FFE29A;
    color: #DB4949;
}

.sup-dislikes-next-btn {
    background-color: #DB4949;
    color: #FFEAB0;
}

.sup-dislikes-cancel-btn:hover {
    background-color: #f1d48a;
}

.sup-dislikes-next-btn:hover {
    background-color: #B83232;
}

@media (max-width: 768px) {
    .sup-dislikes-right {
        width: 100%;
        padding: 6vw;
        align-items: center;
        text-align: center;
    }

    .sup-dislikes-right h1 {
        font-size: 5vw;
    }

    .sup-dislikes-right p {
        font-size: 2.5vw;
    }

    .sup-dislikes-input-container {
        width: 80%;
        display: flex;
        justify-content: center;
    }

    .sup-dislikes-input {
        width: 100%;
        font-size: 2vw;
        padding: 1.5vw;
        text-align: center;
    }

    .sup-dislikes-button-group {
        width: 70%;
        flex-direction: column;
        gap: 15px;
    }

    .sup-dislikes-cancel-btn, .sup-dislikes-next-btn {
        width: 100%;
        font-size: 2vw;
        padding: 1.5vw;
    }
}

@media (max-width: 480px) {
    .sup-dislikes-right {
        padding: 8vw;
    }

    .sup-dislikes-right h1 {
        font-size: 6vw;
    }

    .sup-dislikes-right p {
        font-size: 3vw;
    }

    .sup-dislikes-input-container {
        width: 90%;
    }

    .sup-dislikes-input {
        font-size: 2.5vw;
        padding: 2vw;
    }

    .sup-dislikes-button-group {
        width: 80%;
    }

    .sup-dislikes-cancel-btn, .sup-dislikes-next-btn {
        font-size: 2.5vw;
        padding: 2vw;
    }
}

/*  Health Conditions Form */
.sup-health-right {
    width: 50%;
    background-color: #FFF4E8;
    padding: 80px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.sup-health-right h1 {
    font-size: 65px;
    color: #255699;
    margin-bottom: 0;
}

.sup-health-right p {
    margin-top: 0;
    font-size: 40px;
    color: #255699;
    margin-bottom: 30px;
}

.sup-health-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.sup-health-checkbox {
    font-size: 22px;
    font-family: 'NexaLight';
    color: #255699;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

.sup-health-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.sup-health-checkmark {
    position: absolute;
    left: 0;
    top: 3px;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 2px solid #255699;
    border-radius: 5px;
    transition: 0.3s ease;
}

.sup-health-checkbox input:checked + .sup-health-checkmark {
    background-color: #255699;
    border: none;
}

.sup-health-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.sup-health-checkbox input:checked + .sup-health-checkmark:after {
    display: block;
}


#health-form {
    all: initial;
    display: block;
    width: 100%;
}

#health-form .sup-health-other {
    margin-top: 15px;
    width: 100%;
    margin-bottom: 25px;
}

#health-form .sup-health-input {
    width: 100% !important;
    padding: 12px !important;
    font-size: 20px !important;
    font-family: 'NexaLight', sans-serif !important;
    color: #255699 !important;
    border: 2px solid #255699 !important;
    border-radius: 10px;
    transition: border 0.3s ease;
    background: transparent;
    box-sizing: border-box; 
}

#health-form .sup-health-input:focus {
    border-color: #1F487B !important;
    outline: none !important;
}

#health-form .sup-health-button-group {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#health-form .sup-health-cancel-btn,
#health-form .sup-health-next-btn {
    width: 45% !important;
    padding: 12px !important;
    font-size: 27px !important;
    font-family: 'MoreSugar', sans-serif !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer;
    transition: 0.3s ease;
    box-sizing: border-box; 
}



.sup-health-cancel-btn {
    background-color: #FFE29A;
    color: #255699;
}

.sup-health-next-btn {
    background-color: #255699;
    color: #FFEAB0;
}

.sup-health-cancel-btn:hover {
    background-color: #ecd087;
}

.sup-health-next-btn:hover {
    background-color: #1F487B;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .sup-health-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sup-health-left {
        display: none;
    }

    .sup-health-right {
        width: 100%;
        padding: 6vw;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sup-health-right h1 {
        font-size: 5vw;
    }

    .sup-health-right p {
        font-size: 2.5vw;
    }

    .sup-health-selection {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .sup-health-checkbox {
        font-size: 1.8vw;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0;
        width: 100%;
    }

    .sup-health-checkmark {
        width: 10px;
        height: 10px;
        top: 2px;
    }

    .sup-health-other {
        width: 70%;
        text-align: center;
    }

    .sup-health-input {
        width: 100%;
        font-size: 1.5vw;
        padding: 1vw;
        text-align: center;
    }

    .sup-health-button-group {
        width: 70%;
        flex-direction: column;
        gap: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sup-health-cancel-btn, .sup-health-next-btn {
        width: 80%;
        font-size: 1.8vw;
        padding: 1vw;
    }
}

/* Serving Size */
.sup-serving-right {
    width: 50%;
    background-color: #FFF4E8;
    padding: 80px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.sup-serving-right h1 {
    font-size: 65px;
    color: #DFA700;
    margin-bottom: 0;
}

.sup-serving-right p {
    margin-top: 0;
    font-size: 40px;
    color: #DFA700;
    margin-bottom: 30px;
}


#serving-form {
    all: initial;
    display: block;
    width: 100%;
}

#serving-form .sup-serving-selection {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

#serving-form .sup-serving-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

#serving-form .sup-serving-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#serving-form .sup-serving-choice:hover {
    transform: scale(1.05);
}

#serving-form .sup-serving-img-container {
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#serving-form .sup-serving-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#serving-form .sup-serving-or {
    font-size: 30px;
    font-weight: bold;
    color: #DFA700;
    font-family: 'MoreSugar';
}

#serving-form .sup-serving-choice input {
    display: none;
}

#serving-form .sup-serving-choice span {
    font-size: 22px;
    font-family: 'NexaLight';
    font-weight: bold;
    color: #DFA700;
    margin-top: 10px;
}

#serving-form .sup-serving-button-group {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#serving-form .sup-serving-cancel-btn,
#serving-form .sup-serving-next-btn {
    width: 45% !important;
    padding: 12px !important;
    font-size: 27px !important;
    font-family: 'MoreSugar', sans-serif !important;
    border: none !important;
    border-radius: 30px !important;
    cursor: pointer;
    transition: 0.3s ease;
    appearance: none; 
    box-sizing: border-box;
}


.sup-serving-cancel-btn {
    background-color: #FFE29A;
    color: #DFA700;
}

.sup-serving-next-btn {
    background-color: #DFA700;
    color: #FFF4E8;
}

.sup-serving-cancel-btn:hover {
    background-color: #f1d48a;
}

.sup-serving-next-btn:hover {
    background-color: #B38600;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .sup-serving-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sup-serving-left {
        display: none;
    }

    .sup-serving-right {
        width: 100%;
        padding: 6vw;
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sup-serving-right h1 {
        font-size: 5vw;
    }

    .sup-serving-right p {
        font-size: 2.5vw;
    }

    .sup-serving-option {
        flex-direction: column;
        gap: 10px;
    }

    .sup-serving-or {
        font-size: 4vw;
    }

    .sup-serving-img-container {
        width: 100px;
        height: 100px;
    }

    .sup-serving-choice span {
        font-size: 2vw;
    }

    .sup-serving-button-group {
        width: 70%;
        flex-direction: column;
        gap: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sup-serving-cancel-btn, .sup-serving-next-btn {
        width: 80%;
        font-size: 1.8vw;
        padding: 1vw;
    }
}

@media (max-width: 480px) {
    .sup-serving-right {
        padding: 8vw;
    }

    .sup-serving-right h1 {
        font-size: 6vw;
    }

    .sup-serving-right p {
        font-size: 3vw;
    }

    .sup-serving-option {
        gap: 5px;
    }

    .sup-serving-or {
        font-size: 3vw;
    }

    .sup-serving-img-container {
        width: 80px;
        height: 80px;
    }

    .sup-serving-choice span {
        font-size: 2vw;
    }

    .sup-serving-button-group {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sup-serving-cancel-btn, .sup-serving-next-btn {
        width: 100%;
        font-size: 1.5vw;
        padding: 1vw;
    }
}

/* User Details */
.sup-user-right {
    width: 60%;
    background-color: #FFF4E8;
    padding: 80px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.sup-user-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.sup-user-left {
    width: 30%;
    height: 100vh;
    background: url('https://cooking-ina-website-i68r.vercel.app/img/signupdet.png') no-repeat center center;
    background-size: cover;
    background-position: center;
}

.sup-user-right h1 {
    font-size: 65px;
    color: #37ABB0;
    margin-bottom: 0;
}

.sup-user-right p {
    margin-top: 0;
    font-size: 40px;
    color: #37ABB0;
    margin-bottom: 30px;
}

#user-form {
    all: initial;
    display: block;
    width: 100%;
}

#user-form .sup-user-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}


#user-form .sup-user-input-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


#user-form .sup-user-input {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    font-size: 30px;
    font-family: 'NexaLight', sans-serif;
    color: #37ABB0;
    border: 2px solid #37ABB0;
    border-radius: 20px;
    transition: border 0.3s ease;
    background: transparent;
    height: 60px; 
}


#user-form .sup-user-input:focus {
    border-color: #2E9296;
    outline: none;
}

#user-form .sup-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
    color: #37ABB0;
    transition: color 0.3s ease;
}

.sup-toggle-password:hover {
    color: #2E9296;
}

#user-form .sup-user-button-group {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end; 
    gap: 15px;
    width: 100%;
}

#user-form .sup-user-cancel-btn, .sup-user-next-btn {
    width: 40%;
    padding: 8px;
    font-size: 30px;
    font-family: 'MoreSugar', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
     height: 60px; 
}
#user-form .sup-user-cancel-btn {
    background-color: #FFE29A;
    color: #37ABB0;
}

#user-form .sup-user-next-btn {
    background-color: #37ABB0;
    color: #FFE29A;
}

#user-form .sup-user-cancel-btn:hover {
    background-color: #f1d48a;
}

#user-form .sup-user-next-btn:hover {
    background-color: #2E9296;
}

/* Updated Media Queries */
@media (max-width: 1024px) {
    #user-form .sup-user-right {
        width: 70%;
        padding: 30px;
    }

    #user-form .sup-user-right h1 {
        font-size: 2.5rem;
    }

    #user-form .sup-user-right p {
        font-size: 1.2rem;
    }

    #user-form .sup-user-input {
        font-size: 1.4rem;
        height: 50px;
        padding: 12px;
    }

    #user-form .sup-toggle-password {
        font-size: 1.8rem;
        right: 15px;
    }

    #user-form .sup-user-cancel-btn,
    #user-form .sup-user-next-btn {
        font-size: 1.4rem;
        height: 50px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    #user-form .sup-user-container {
        flex-direction: column;
    }

    #user-form .sup-user-right {
        width: 100%;
        padding: 40px 20px;
    }

    #user-form .sup-user-right h1 {
        font-size: 2.2rem;
    }

    #user-form .sup-user-right p {
        font-size: 1.1rem;
    }

    #user-form .sup-user-input-container {
        max-width: 100%;
    }

    #user-form .sup-user-input {
        font-size: 1.2rem;
        height: 45px;
        padding: 10px;
    }

    #user-form .sup-toggle-password {
        font-size: 1.6rem;
    }

    #user-form .sup-user-button-group {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    #user-form .sup-user-cancel-btn,
    #user-form .sup-user-next-btn {
        width: 48%;
        font-size: 1.2rem;
        height: 45px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #user-form .sup-user-right {
        padding: 30px 15px;
    }

    #user-form .sup-user-right h1 {
        font-size: 1rem;
    }

    #user-form .sup-user-right p {
        font-size: 0.7rem;
    }

    #user-form .sup-user-input {
        font-size: 1rem;
        height: 40px;
        padding: 8px;
        border-radius: 15px;
    }

    #user-form .sup-toggle-password {
        font-size: 1.4rem;
        right: 10px;
    }

    #user-form .sup-user-button-group {
        flex-direction: column;
        gap: 12px;
    }

    #user-form .sup-user-cancel-btn,
    #user-form .sup-user-next-btn {
        width: 100%;
        font-size: 1.1rem;
        height: 40px;
        padding: 8px;
        border-radius: 20px;
    }
}
/* Success Page */
.sup-success-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.sup-success-border {
    width: 100%;
    height: 87px;
    background: url('https://cooking-ina-website-i68r.vercel.app/img/border.png') no-repeat center center;
    background-size: cover;
}

.top-border {
    margin-top: 0;
}

.bottom-border {
    margin-bottom: 0;
}

.sup-success-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.sup-success-logo {
    width: 250px; 
    margin-bottom: 10px;
}

.sup-success-content h1 {
    font-size: 60px;
    margin-top: 5px;
    color: #37ABB0;
    margin-bottom: 5px;
}

.sup-success-content p {
    margin-top: 3px;
    font-size: 32px;
    color: #37ABB0;
    font-family: 'MoreSugar';
}

.sup-success-btn {
    width: 220px;
    padding: 12px;
    font-size: 35px;
    font-family: 'MoreSugar', sans-serif;
    background-color: #37ABB0;
    color: #FFE29A;
    border: none;
    margin-top: 50px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s ease;
}

.sup-success-btn:hover {
    background-color: #2E9296;
}

@media (max-width: 768px) {
    .sup-success-logo {
        width: 120px;
    }

    .sup-success-content h1 {
        font-size: 5vw;
    }

    .sup-success-content p {
        font-size: 2.5vw;
    }

    .sup-success-btn {
        width: 150px;
        font-size: 2vw;
        padding: 1.2vw;
    }

    .sup-success-border {
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .sup-success-logo {
        width: 100px;
    }

    .sup-success-content h1 {
        font-size: 6vw;
    }

    .sup-success-content p {
        font-size: 3vw;
    }

    .sup-success-btn {
        width: 140px;
        font-size: 2vw;
        padding: 1.5vw;
    }

    .sup-success-border {
        min-height: 50px;
    }
}
