body {
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    height: 100vh;
    margin: 0;
    background-color: #E79B25;
    background-size: cover;
    z-index: 0;
}
.background{
    padding: 0;
    margin: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    background-color: #FEB440;
    z-index: 1;
}
.login-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2 !important;
}
.login-box {
    background: #F8F8F8;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 10px 50px 0px #00000040;
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.logo-container {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 50%;
    height: auto;
    border-radius: 4px;
}

.textbox {
    margin-bottom: 20px;
}

.textbox input {
    width: calc(100% - 30px);
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #13131340;
    font-size: 16px;
}

.textbox input::placeholder {
    color: #aaa;
}

.btn {
    width: 100%;
    padding: 15px;
    margin-bottom: 70px;
    border: none;
    border-radius: 20px;
    background: #FEB440;
    color: black;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #C07500;
}

p {
    margin-top: 20px;
    color: #cfcfcf;
}

p a {
    color: #00a8cc;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
