.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    padding: 40px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    text-align: center;
}

.login-container img {
    max-width: 200px;
    margin-bottom: 10px;
    margin-left: -90px;
}

.login-container h2 {
    margin-bottom: 10px;
    font-weight: bold;
    margin-left: -50px;
}

.form-control {
    height: 45px;
    font-size: 16px;
}

.btn-primary {
    background-color: #ff9f1a;
    border: none;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #e68a00;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    height: 55px;
    font-size: 18px;
    padding: 12px;
    width: 700px;
    border: 1px solid black;
}

.form-check-input {
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: white;
    border: 2px solid black;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.btn-primary {
    height: auto;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    width: 25%;
}

.forgot-password-link {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: black;
    text-decoration: none;
}

.forgot-password-link:hover {
    color: black;
    text-decoration: underline;
}