body {
    /* background: rgb(193, 254, 161);
    backgound: linear-gradient(90deg, rgba(193, 254, 161, 1) 0%, rgba(37, 150, 76, 1) 80%, rgba(0, 125, 57, 1) 100%); */
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    color: #333;
}
.login-box {
    width: auto;
    padding: 2rem;
    padding-bottom: 3rem;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    min-width: 500px !important;
}
.logo-img {
    height: 100px;
    margin-bottom: 50px;
}
.input-group-text {
    /* background: linear-gradient(
        180deg,
        rgba(193, 254, 161, 1) 0%,
        rgba(0, 125, 57, 1) 100%,
        rgba(37, 150, 76, 1) 80%
    ); */
    background-color: #dbdbdb;
    color: #000;
    border: solid 1px #d1d1d1;
    border-radius: 6px;
}
.form-control {
    /* background: linear-gradient(
        180deg,
        rgba(193, 254, 161, 1) 0%,
        rgba(0, 125, 57, 1) 100%,
        rgba(37, 150, 76, 1) 80%
    ); */
    background-color: #f7f5f5;
    color: #000;
    font-weight: 600;
    border: solid 1px #d1d1d1;
    border-radius: 6px !important;
}
.form-control::placeholder {
    color: #000;
}
.form-control {
    padding: 1.2rem;
}
.form-control:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: unset;
}
.buttons {
    width: 100%;
    margin: 0px;
    padding: 1.2rem;
    border: none;
    /* background: linear-gradient(
        180deg,
        rgba(193, 254, 161, 1) 0%,
        rgba(0, 125, 57, 1) 100%,
        rgba(37, 150, 76, 1) 80%
    ); */
    background-color:#987e52;
    color: #ffffff;
    font-weight: bold;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}
.error {
    text-align: left;
}
.modal-content {
    background: #d1d3d0;
    border-radius: 5px;
}

.modal-body {
    padding: 2rem;
}
.modal-title {
    color: #000;
    font-weight: 600;
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #282828;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
