body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #2d2e35 50%, #9a7904 50%);
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.container {
    width: 80%;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
}

.logo-container {
    flex: 1;
    text-align: center;
    padding: 40px;
}

.logo {
    max-width: 100%;
    height: auto;
}

.form-container {
    flex: 1;
    padding: 40px;
}

.mb-3 {
    margin-bottom: 20px;
    position: relative;
}

.mb-3 input:not(.form-check-input) {
    color: #565656;
    background: none;
    padding: 0.625rem;
    border: 1px solid #030104;
    border-radius: 5px;
    width: 100%;
    z-index: 1;
}

.mb-3 label {
    color: #030104;
}


.btn-primary {
    width: 100%;
}

.btn-link {
    color: #007bff;
}
.mb-0 {
    color: #030104
}
.form-check-label input {
    margin-right: 5px;
    vertical-align: middle;
}
#password-container {
    position: relative;
    margin-bottom: 10px;
}

#toggleButton {
    position: absolute;
    right: 6px;
    margin-top: -26px;
    cursor: pointer;
    color: cornflowerblue
}