/*! Variables start */
:root {
    /* Font Styles */
    --mainfont: "Onest", sans-serif;

    /* Color Variables */
    --colorBlueMain: #22577a;
    --colorBlack: #010101;
    --colorSecondYellow: #f7e8cf;
    --colorYellow: #eaab44;
    --colorGray: #606566;
    --colorWhite: #fdfdfd;
    --colorBackground: #f3f8ff;
}

body {
    height: 100vh;
}

.Log-MainText {
    color: var(--colorBlueMain);
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.Log-SubHeading {
    color: #598CAE;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.SectipnPaddingTop {
    margin-top: 170px;
}

/* input box */
.form-control {
    height: 55px;
    text-indent: 5px;
    border-radius: 8px;
    font-size: 16px;
    background-color: #ffffff;
    box-shadow: 0px 4px 11px 0px rgba(34, 87, 122, 0.15);
    border: none;
    color: #7d7d7d;
}

.form-control:focus {
    border: none;
    background-color: #fff;
    box-shadow: 0px 4px 18px 0px rgba(34, 87, 122, 0.15);
    color: #7d7d7d;
}

.form-control::placeholder {
    color: #aeaeae;
}

#exampleFormControlTextarea1 {
    height: 200px;
}

.j-SearchBarLabel {
    color: #22577A;
    font-family: var(--mainfont);
    font-size: 18px;
    font-weight: 500;
}

.j-redStarMark {
    color: #FC5959;
    font-family: var(--mainfont);
    font-size: 20px;
    font-weight: 500;
}

.Log-DontHaveAccountText {
    color: #598CAE;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.Log-LoginText {
    color: var(--colorBlueMain) !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.45px;
}

a {
    text-decoration: none;
    color: var(--colorBlueMain);
}

.custom-button {
    background-color: #007bff; /* Change background color */
    color: #fff; /* Change text color */
    border: none; /* Remove the border */
    border-radius: 5px; /* Round the corners */
    padding: 10px 20px; /* Adjust padding as needed */
    font-size: 16px; /* Adjust font size */
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
}

.custom-button:hover {
    background-color: #0056b3; /* Change background color on hover */
}
