body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.card {
    width: 400px;
    padding: 20px;
    border-radius: 15px;
}
.card-header {
    background-color: #00C492;
    color: #fff;
    border-radius: 10px 10px 0 0;
}
.card-body .company-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.option-company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.card-body .company-logo img,
.option-company-logo img {
    max-width: 100%;
    max-height: 100%;
}
.btn-primary {
    background-color: #00C492;
    border-color: #00C492;
}
.btn-primary:hover {
    background-color: #009e77;
    border-color: #009e77;
}

.alert {
    top: 0;
}

#authorizationForm .divider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    position: relative;
}

#authorizationForm .divider::before,
#authorizationForm .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #9c9c9c;
}

#authorizationForm .divider:not(:empty)::before {
    margin-right: 10px;
}

#authorizationForm .divider:not(:empty)::after {
    margin-left: 10px;
}