*{
    box-sizing: border-box;
    font-family: "Roboto Light", sans-serif;
    border: 0;
    margin: 0;
}

#body{
    padding: 10px;
    background: rgb(9,169,210);
    background: linear-gradient(90deg, rgba(9,169,210,1) 0%, rgba(9,118,175,1) 49%, rgba(7,77,113,1) 100%);
    overflow: auto;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

label{
    font-size: 13px;
    color: #6c757d;
}

.copy{
    font-size: 12px;
    color: #9f9f9f;
}

#login-box{
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 6px;
    background: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

#btn-login{
    width: 100%;
    padding: 14px 0;
    background: #39a1c3;
    font-weight: bold;
    border: 1px solid #39a1c3;
}

#btn-login:hover{
    background: #187da0;
    border: 1px solid #187da0;
}

label{
    margin: 6px 0;
}

.form-control{
    padding-left: 34px;
}

.col{
    position: relative;
}

svg{
    position: absolute;
    left: 20px;
    top: 35px;
    fill: rgb(102, 102, 102);
}

.alert{
    font-size: 14px;
}

.message-content.danger{
    background: #FA6767;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    margin-bottom: 2px;
}

.message-content.success{
    background: #42D29D;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    margin-bottom: 2px;
}