main {
    background: #003b30;
    height: 100vh;
    width: 100vw;
    display: flex;
}

.error-styling {
    background: linear-gradient(
        to right,
        rgb(255, 95, 109),
        rgb(255, 195, 113)
    );
}

.left-panel {
    flex: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-heading {
    font-size: 40px;
    font-family: "HappyMonkey";
    color: #fff;
    text-align: center;
    margin-bottom: 350px;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.main-heading span {
    display: block;
}

.login-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.login-form-container {
    flex: 1;
    /* position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 40%; */
    padding: 170px 80px;
    background: #fff;
    font-family: "Satoshi-Regular";
    z-index: 1;
}

.leafs-web {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.login-form-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.form-fields {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.heading {
    font-family: "HappyMonkey";
    font-size: 35px;
    margin-bottom: 0;
}

.sub-heading {
    color: #505050;
    font-size: 16px;
    font-family: "Satoshi-Regular";
}

.login-form-container input {
    padding: 22px;
    background: #f4f4f4;
    border: 1px solid transparent;
    color: #505050;
    margin-bottom: 40px;
    border-radius: 5px;
}

.login-form-container input:focus {
    border: 1px solid #02745f;
    outline: none;
}


.login-button {
    margin-top: 50px;
    font-size: 20px;
    font-family: "HappyMonkey";
    padding: 22px;
    background: #ffd84e;
    border: 0;
    border-radius: 5px;
}

.loading {
    pointer-events: none;
    opacity: 0.7;
}