﻿body {
    font-family: Arial, sans-serif;
    background-color: rgb(65, 171, 221);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

    .login-container h1 {
        font-size: 24px;
        margin-bottom: 40px;
        color: #333;
    }

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

    .form-group label {
        display: block;
        font-size: 14px;
        margin-bottom: 5px;
        color: #555;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 10px;
        font-size: 18px;
        height: 48px;
        border: 1px solid #ccc;
        border-radius: 20px;
        box-sizing: border-box;
    }

.input-wrapper input:focus {
    /*border-color: rgb(96, 152, 119);*/
    outline: solid;
    outline-color: rgb(232, 240, 254);
    outline-width: medium;
    outline-offset: 1px;
}

.login-button {
    background-color: rgb(70, 122, 173); /*rgb(75,105,196);*/
    color: #ffffff;
    border: none;
    margin-top: 50px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    height: 49px;
}

    .login-button:hover {
        background-color: rgb(70, 122, 173); /*rgb(95,125,216);*/
    }

.footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

.input-wrapper {
    position: relative;
    /*width: 250px;*/
}

    .input-wrapper .fa {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        color: #999;
        font-size: 16px;
        pointer-events: none;
    }

    .input-wrapper input {
        width: 100%;
        padding: 10px 10px 10px 35px;
        outline: none;
    }

        .input-wrapper input::placeholder {
            color: #bbb;
        }

input[type="checkbox"] {
    accent-color: rgb(95, 125, 216); /*#4CAF50;*/
}

.cb {
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: unset;
    color: grey;
}

.dotted-border input:focus {
    border-color: rgb(96, 152, 119);
    outline: dotted;
    outline-color: rgb(96, 152, 119);
    outline-width: medium;
    outline-offset: 2px;
}

@media screen and (min-width: 1600px) {
    #divLogin {
        zoom: 1.17;
    }
}

@media screen and (max-width: 1000px) {
    #divLogin {
        left: calc(50vw - 170px) !important;
        top: calc(50vh - 217px) !important;
    }
}

@media screen and (min-width: 1600px) {
    body {
        background-position: bottom !important;
    }
}

@media screen and (max-width: 1600px) {
    body {
        background-position-x: +70% !important;
        background-position-y: +80% !important;
    }
}

@media screen and (max-width: 600px) {
    body {
        background-position-x: +70% !important;
        background-position-y: +70% !important;
    }
}
