.login-section {
    width: 100%;
    height: 100vh;
}

.login-full {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.login {
    width: 100%;
    height: 100vh;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login-logo {
    width: 210px;
    height: 55px;
    display: block;
    margin: 70px 0;
}

.login-logo img {
    width: 100%;
    height: 100%;
}

.login-account p {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #6A6A6A;
}

.login-btns {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-btn {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 700;
    font-size: 14px;
    color: #505050;
}

.login-btn:hover img {
    filter: invert(1) brightness(500);
    transition: .3s all;
}

.login-copy {
    margin-top: auto;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    color: #252525;
}

.login-bg {
    width: 100%;
    height: 100vh;
    background: #AB7765;
    position: relative;
    right: -10px;
    overflow: hidden;
}

.journey-login {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.journey-login-res {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .login-btns {
        width: 90%;
        margin: 0 auto;
    }

    .journey-login {
        display: none;
    }

    .journey-login-res {
        display: block;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 767px) {
    .login-bg {
        display: none;
    }

    .login-btns {
        width: 90%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 567px) {
    .login {
        padding: 25px;
    }
}
    
.person-info {
    width: 100%;
}

.person-info label {
    font-weight: 400;
    font-size: 14px;
    color: #8E8E8E;
}

.person-info p,
.person-info input {
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    color: #252525;
    margin-bottom: 10px;
    padding: 0 0 5px;
    border: none;
    border-bottom: 1px solid #D6D6D6;
}


.person-info input:focus {
    outline: none;
    border-bottom: 1px solid #7666D2;
}