html {
    width: 100%;
    height: auto;
}

body {
    font-family: Roboto, sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h5 {
    font-weight: bold;
    font-size: 24px;
    margin: initial;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    width: 100%;
    height: 64px;
    text-align: center;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.12);
}

a {
    color: #0D890A;
    text-decoration: none;
    font-weight: 700;
    margin-left: 16px;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    color: black;
}

.login-container {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    width: 886px;
    margin: auto;
}

.main-container {
    display: flex;
    max-width: 1046px;
    gap: 63px;
}

.left-container, .right-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 380px;
}

.divider {
    display: flex;
    width: 1px;
    height: auto;
    background-color: #D6DEDA;
}

.main-description {
    font-size: 16px;
    padding: 24px 0;
    line-height: 24px;
}

.right-container form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
}

.login-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin: initial;
    text-align: left;
}

form fieldset {
    display: flex;
    border: none;
    position: relative;
    padding: 0;
}

form fieldset input {
    width: 100%;
    height: 40px;
    border: 1px solid #2F3A514D;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 16px;
}

form fieldset label {
    position: absolute;
    top: 12px;
    left: 24px;
    color: #909090;
    font-weight: 300;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

form fieldset input:valid + label,
form fieldset input:focus + label {
    font-size: 14px;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    background-color: white;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #45a049;
}

.button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.button-container button {
    width: 120px;
}

.select {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 108px;
    height: 40px;
    color: #0D890A;
    cursor: pointer;
}

.option {
    padding: 0 30px 0 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    background: white;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
    order: 2;
    z-index: 1;
    transition: background .3s ease-out;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
}

.option:hover {
    background: #0d890a14;
}

.select:focus .option {
    position: relative;
    pointer-events: all;
    cursor: pointer;
}

.selectopt {
    opacity: 0;
    position: absolute;
    left: -99999px;
}

.select > input:not(checked) + label {
    border-bottom: 1px solid #2F3A514D;
    border-radius: 4px;
}

input:checked + label {
    order: 1;
    z-index: 2;
    background: white;
    position: relative;
    border: 1px solid #2F3A514D;
    border-radius: 4px;
    cursor: pointer;
}

input:checked + label:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #5F6366;
    position: absolute;
    right: 10px;
    top: calc(50% - 2.5px);
    pointer-events: none;
    z-index: 3;
    cursor: pointer;
}

input:checked + label:before {
    position: absolute;
    right: 0;
    height: 40px;
    width: 40px;
    content: '';
    background: transparent;
    cursor: pointer;
}

.show-hide-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 12px;
    background: white;
}

::-ms-reveal {
    display: none;
}

@media screen and (max-width: 887px) {
    .login-container {
        width: auto;
        margin: 32px 16px auto;
    }

    .main-container {
        flex-direction: column;
        margin-bottom: 32px;
        gap: 32px;
    }

    .left-container, .right-container {
        width: auto;
        margin: 0;
    }
}

@media screen and (max-width: 374px) {
    .header-container img {
        width: 50%;
    }
}