.login 
{
    background: #b18317;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form 
{
    background: #eee;
    padding: 20px;
    width: 400px;
    font-family: Arial, Helvetica, sans-serif;
}

.login-label 
{
    display: block;
    font-size: 14px;
    color :#b18317;
    font-weight: 500;
    margin-bottom: 5px;
}

.login-group 
{
    position: relative;
    margin: 20px 0;
}


.login-flex 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}



.login-input 
{
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 45px;
    padding: 5px 5px 5px 35px;
}

.login-remember,.login-forgot 
{
    font-size: 14px;
}

.w-5 
{
    width: 25px;
    height: 25px;
    color: #b18317;
    position: absolute;
    top: 30px;
    left: 5px;
}

.w-3 
{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.login-submit 
{
    width: 100%;
    padding: 10px;
    background: #b18317;
    color: #eee;
    border: none;
    cursor: pointer;
}

.login-submit-icon 
{
    font-size: 30px !important;
}


.login-center 
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-link 
{
    text-decoration: none;
    font-size: 14px;
    color: #b18317;
}

.login-bottom 
{
    margin-bottom: 20px;
}

.login-success 
{
    background: #00c851;
    color: #eee;
    padding: 5px;
}

.login-errors 
{
    background: #ff4444;
    color: #eee;
}