body,
html {
    height: 100%;
    background-color: #fff;
}

.login-container {
    max-width: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 1);
    overflow: hidden;
}

.logo-section {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.logo-section img {
    max-width: 100px;
}

input:focus,
textarea:focus,
select:focus,
.btn-close:focus{
    outline: 0 !important;
    box-shadow: none !important;
}

input[type=text],
input[type=number],
input[type=password],
input[type=date],
select,
textarea{
    border-radius: 0 !important;
}

.form-label {
    margin-top: .3rem;
    margin-bottom: .1rem;
}