@import url('https://fonts.googleapis.com/css2?family=Lora&family=Poppins&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}
#accounts {
    height: 100vh;
    width: 100%;
    display: flex;
}
#bg {
    width: 60%;
    background: url('../img/login-bg.jpg');
    background-size: cover;
}
#form {
    width: calc(40% - 200px);
    padding: 100px;
}
.logo {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.logo img {
    width: 50%;
}
#form form {
    width: 100%;
}
#form form .input-box {
    width: 100%;
    margin-bottom: 25px;
}
#form form .input-box label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
}
#form form .input-box input {
    width: calc(100% - 30px);
    border: 1px solid #aaa;
    outline: none;
    background: none;
    padding: 10px 15px;
}
#form form .input-box input:focus {
    border: 1px solid #14a852;
}
#form form .input-box select {
    width: calc(100% + 5px);
    border: 1px solid #aaa;
    outline: none;
    background: none;
    padding: 10px 15px;
}
#form form .input-box select:focus {
    border: 1px solid #14a852;
}
#form form .button-box button {
    width: calc(100% + 5px);
    border: none;
    outline: none;
    background: #14a852;
    padding: 15px;
    color: #fff;
    font-weight: 500;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .6s;
}
#form form .button-box button:hover {
    background: #006266;
}
#errors, .errors {
    font-size: 12px;
    color: red;
    margin-bottom: 15px;
}
.password {
    position: relative;
}
#hide, #show {
    position: absolute;
    top: 11px;
    right: 5px;
    color: #555;
    cursor: pointer;
}
#hide {
    display: none;
}
#dynamic_form {
    color: #fff;
}