/* Default Styling */

body {
    font-family: "Montserrat", sans-serif;
    /* font-family: 'Quicksand', sans-serif; */
    margin: -47px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /*background-color: #f6a623;*/
    background-color: white;
    flex-direction: column;
    /* overflow: auto; */
}

::-webkit-scrollbar {
    display: none;
}

.page-header {
    height: 8rem;
    margin-top: 5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 1rem;
}

img {
    width: 100%;
    max-width: 400px;
}

.form-container {
    /* margin-top: 3rem; */
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: white;
    border-radius: 20px 20px 0 0;
    padding: 12px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    box-sizing: border-box;
    overflow: auto;
}

.form-containers {
    /* margin-top: 3rem; */
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: maroon;
    border-radius: 20px 20px 0 0;
    padding: 12px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    box-sizing: border-box;
    overflow: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"],
select {
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
    margin-right: 8px;
}

#dropdown {
    overflow: visible;
}

small {
    font-size: 12px;
    color: #666666;
    margin-top: 4px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

button {
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.sendOTP, .login {
    background-color: #a97979;
    color: #ffffff;
}

.next-button {
    text-decoration: none;
    color: white;
}

.back-button {
    text-decoration: none;
    color: black;
}

.back {
    background-color: #ffffff;
    color: #7a5cfa;
    border: 1px solid #7a5cfa;
}

.next,
.submit {
    background-color: #894042;
    color: #ffffff;
}

.heading {
    margin-top: 0;
    margin-bottom: 0;
}

.heading-2 {
    margin-top: 2rem;
    margin-bottom: 0;
}

h2 {
    margin: 0 0 1rem 0;
}

h3 {
    margin-top: 0;
    margin-bottom: 0;
}


/* Landing Page Manager */

.button-container {
    height: 100%;
    width: 100%;
    max-width: 400px;
  /*  background-color: #ffffff;*/
    border-radius: 20px 20px 0 0;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.group-1 {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 2rem;
}

.group-2 {
    display: flex;
    justify-content: center;
}

    .group-2 button {
        width: 50%;
    }

.btn {
    font-family: "Montserrat", sans-serif;
    height: 8rem;
    color: black;
    border: solid 1px;
    border-radius: 2rem 0 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}


    .btn:hover {
        background-color: #7a5cfa;
    }

.btn_img {
    object-fit: contain;
    height: 3rem;
    margin-bottom: 0.5rem;
}



/* Landing Page FLS */

.button-container-fls {
    /* margin-top: 3rem; */
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-1-fls {
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 16px;
    /* margin-bottom: 2rem; */
}

/* MRF Dashboard */

.form-container-mrf-dashboard {
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #f6a623;
    color: white;
    text-align: center;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

/* Star Rating*/

.star-rating {
    display: flex;
    flex-direction: row;
    font-size: 24px;
    cursor: pointer;
}

.star {
    color: gray;
    transition: color 0.3s;
}


    .star.hovered {
        color: orange;
    }

    .star.selected {
        color: orange;
    }

.star-rating {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.star-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.star {
    font-size: 24px;
    cursor: pointer;
    color: gray;
    transition: color 0.3s;
}

.number {
    font-size: 14px;
    margin-top: 4px;
    color: gray;
}

.dashboard-back {
    display: flex;
    margin-bottom: 1rem;
    background-color: #ffffff;
    color: black;
}

.back-arrow-icon {
    width: 30px;
    height: auto;
}

/* Media Query */

@media (max-width: 480px) {
    .form-container, .button-container, .button-container-fls {
        padding: 14px;
        background-color: maroon;
    }

    .form-container-mrf-dashboard {
        padding: 10px;
    }

    button {
        width: 160px;
    }

    .form-actions {
        flex-direction: column;
        gap: 16px;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 8px;
    }
}
