/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fcfcfc;
    display: flex;
    justify-content: center;

    align-items: flex-start;
    margin-top: 50px;
    height: 100vh;
}

.container {
    width: 620px;
    max-width: 90%;
    background-color: #fff;
    border: 2px solid #369; /*#e0b45a;*/
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header {
    background-color: #369; /*#e0b45a;*/
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    /*padding: 10px 0;*/
    /*border-bottom: 2px solid #d39e2c;*/
}

.header p {
    margin: 0;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #333;
}

.content {
    display: flex;
    padding: 15px;
}

.image-container {
    flex: 1;
    padding-right: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
}

.image-container div {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #369; /* #e0b45a;*/
    color: #fff;
    font-weight: bold;
    font-size: 35px;
    text-shadow: 1px 1px 2px #333;
    line-height: 35px;
    box-shadow: 1px 1px 7px #333;
}

form.maxpro-auth-form {
    flex: 2;
    display: flex;
    flex-direction: column;
}

/*form label {*/
/*    margin-bottom: 5px;*/
/*    font-weight: bold;*/
/*}*/

form.maxpro-auth-form input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1em;
    width: 100%;
    color: #195087;
    outline: none
}

form.maxpro-auth-form input:focus {
    /*outline: 1px solid gray;*/
    /*box-shadow: 1px 1px 5px #8a8a8a;*/
    box-shadow: 1px 1px 5px #369;
}

form.maxpro-auth-form button {
    padding: 10px;
    background-color: #369; /* #e0b45a;*/
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form.maxpro-auth-form button:hover {
    background-color: #5286bc; /*#d39e2c;*/
}

form.maxpro-auth-form button:disabled {
    background-color: #5286bc; /*#d39e2c;*/
    cursor: default;
}

.maxpro-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.maxpro-control label {
    width: 110px;
    color: #505050;
    text-align: left;
}

.footer {
    background-color: #369; /*#e0b45a;*/
    color: #fff;
    text-align: left;
    padding: 5px 0;
    border-top: none;
}

.footer p {
    margin: 0;
    padding: 2px 5px;
}

li.text-error-small {
    color: red;
    font-size: 14px;
    text-align: left;
}
