body {
    margin: 0;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-section {
    display: flex;
    width: 100%;
    height: 100vh;
}

.login-form {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
}

.login-container h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
}

.login-container p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.login-container .register-link {
    color: #ff9800;
    text-decoration: none;
}

.login-container .register-link:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.input-container {
    position: relative;
}

.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid gray;
    padding: 10px 30px 10px 0;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.remember-forgot input[type="checkbox"] {
    margin-right: 5px;
}

.remember-forgot a {
    color: black;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.login-btn {
    background-color: #ff9800;
    border: none;
    color: white;
    padding: 12px 20px;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    border-radius: 20px;
}

.background-image {
    width: 60%;
    background-image: url('/images/auth-page-background.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    background-repeat: no-repeat;
    padding: 20px;
    box-sizing: border-box;
    background-position: center;
}

.logo {
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    float: left;
}

.demo-btn {
    background-color: grey;
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 20px;
    width: 285px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .login-section {
        flex-direction: column;
    }
    .login-form, .background-image {
        width: 100%;
    }
}
.auth-navbar{
    background-color: #6b5c45;
    padding: 10px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    height: 60px;
}

input{
    padding-left: 5px !important;
}

.neviscater{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    font-weight: 500;
    margin-left: 10px;
}
