/* -------------------------------------------------------- */

/* -------------------------------------------------------- */

.login-body-main {
    margin: auto;
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 500;
}
.login-body-content {
    width: 355px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #f8f8ff;
    border: 1px solid #91b2be;
    border-top: none;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
}
.login-body-content .login-input-group {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    display: block;
}
.login-custom-input:hover {
    border: 1px solid #126287;
}
.login-custom-input:focus {
    border: 2px solid #126287;
    outline: none;
}

.login-custom-input:focus::after {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    border: 2px solid #126287;
    pointer-events: none;
}
.login-input {
    height: 45px;
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid rgba(17, 79, 116, 0.25);
    margin-bottom: 10px;
    text-indent: 3px;
}
.login_user_round {
    filter: invert(27%) sepia(96%) saturate(565%) hue-rotate(158deg)
        brightness(93%) contrast(91%);
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
.button {
    position: relative;

    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    background-color: #4caf50; /* Green */
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 10px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 10px;
}
/* zielony */
.button5 {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    background: #126287;
    border: 1px solid #126287;
    color: white;
}

.button5:hover {
    background: #1882b4;
    border: 1px solid #1882b4;
}
.button5:active {
    background: #1fa3e0;
    border: 1px solid #1fa3e0;
}

.button--loading .button__text {
    visibility: hidden;
    opacity: 0;
}

.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.success {
    width: 100%;
    margin: 0px auto;
    margin: 0px auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    padding: 10px;
    border: 1px solid #3c763d;
    color: #3c763d;
    background: #dff0d8;
    border-radius: 10px;
    text-align: center;
}

.error {
    width: 100%;
    margin: 0px auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    padding: 10px;
    border: 1px solid #e5acb6;
    color: #a94442;
    background: #ffc0cb;
    border-radius: 10px;
    text-align: center;
}
.login-success {
    width: 100%;
    text-align: center;
    color: #3c763d;
    font-size: 15px;
}
.login-error {
    width: 100%;
    text-align: center;
    color: #a94442;
    font-size: 15px;
}
