.login-bg {
    width: 100vw;
    height: 100vh;
    background-color: #f7f8f7;
    display: flex;
}
.form-bg {
    width: 420px;
    margin: auto;
    border: solid #dedede 1px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.logo-section {
    border-bottom: solid #dedede 2px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 17px 0px;
}
form {
    padding: 21px 40px;
}
.heading {
    display: flex;
    flex-direction: column;
}
.heading h3 {
    font-size: 16px;
    text-align: center;
}
.heading p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
}

.heading button {
    padding: 8px 75px;
    font-size: 16px;
    line-height: 28px;
    background-color: #f7f8f7;
    border-radius: 8px;
    border: solid 1px #dedede;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #aaa;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

.input-wrapper {
    position: relative;
    margin-top: 1rem;
}

.input-wrapper input {
    flex: 1;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.toggle-password {
    cursor: pointer;
    color: #a3aab7;
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 30px;
}
