/* LOGIN CSS */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to right, #59a8c5, #4d94b3, #4380a1, #396d8f, #2f5b7c, #285071, #214666, #1a3c5b, #143655, #0d3050, #062a4a, #002445);
    color: #CCCCCC;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

.content {
    margin: 5px;
    max-width: 480px;
    width: 100%;
}

.card {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 100%;
}

.card-body {
    padding: 30px;
}

.logo {
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    color: #002445;
    display: inline-block;
    margin-bottom: 10px;
}

.form-control {
    appearance: none;
    background-clip: padding-box;
    background-color: #FFFFFF;
    border: 1px solid #D7DEE2;
    border-radius: 8px;
    box-shadow: none !important;
    color: #002445;
    display: block;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    line-height: 1.5;
    outline: 0;
    padding: 0 15px;
    width: 100%;
}

.form-control:focus {
    border-color: #002445;
}

.btn {
    align-items: center;
    background-color: #59A8C5;
    border: none;
    border-radius: 60px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    height: 60px;
    line-height: 1.5;
    padding: 0 15px;
    text-align: center;
    transition: all .3s;
    width: 100%;
}

.alert {
    background-color: #FFE3DF;
    border: 1px solid #FFC8C0;
    border-radius: 8px;
    color: #662F27;
    line-height: 26px;
    margin-bottom: 30px;
    padding: 15px;
    position: relative;
}

@media(min-width: 992px) {

    .btn:hover {
        background-color: #224463;
    }

    .card-body {
        padding: 30px;
    }
}