@font-face {
    font-family: 'DBScreenHead';
    src: url('../fonts/DBScreenHead-Black.woff') format('woff');
    font-weight: 900;
}

@font-face {
    font-family: 'DBScreenHead';
    src: url('../fonts/DBScreenHead-Regular.woff') format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'DBScreenHead';
    src: url('../fonts/DBScreenHead-Light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: 'DBScreenSans';
    src: url('../fonts/DBScreenSans-Regular.woff') format('woff');
}

@font-face {
    font-family: 'DBScreenSans';
    src: url('../fonts/DBScreenSans-Medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'DBScreenSans';
    src: url('../fonts/DBScreenSans-SemiBold.woff') format('woff');
    font-weight: 600;
}

@font-face {
    font-family: 'DBScreenSans';
    src: url('../fonts/DBScreenSans-Bold.woff') format('woff');
    font-weight: bold;
}

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'DBScreenSans', sans-serif;

}
body {
    background-color: #e6e6e6;
    color: #333333;
    font-family: "DBScreenSans", sans-serif;
}
.holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 459px;
    height: 100%;
}
.login-container {
    width: 100%;
    background-color: #ffffffa6;
    height: 531px;
    box-shadow: 0 3px 9px -2px rgb(0 0 0 / 20%), 0 0 0 1px rgb(0 0 0 / 8%);
    padding: 32px;
    border-radius: 5px;
}
.form-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-button {
    background-color: #ec0016;
    width: 100%;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    gap: 0.25rem;
}

.login-utility-button {
    margin-top: 10px;
    background-color: #3c414b;
    color: white;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-button-sso {
    margin-top: 10px;
    background-color: #508b1b;
    width: 100%;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-header {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-header hr{
    border-color: #ec0016;
    border-width: 3px;
    border-radius: 8px;
    border-style: solid;
    width: 60px;
}

.login-heading {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px;
}

.login-sub-heading {
    margin-top: 32px;
    font-size: 14px;
}

.login-description {
    font-size: 14px;
    font-weight: 400;
    color: #646973
}

.login-body {
    margin-bottom: 8px;
}

input {
    padding: 4px 8px;
    border: 1px solid #e6e6e6;
    height: 40px;
    margin-bottom: 8px;
    width: 100%;
    border-radius: 4px;
    font-size: 15px;
}

.input-wrapper {
    width: 100%;
    position: relative;
}

.alert {
    padding: 16px 4px 8px 4px;
}

.alert-empty {
    height: 48px
}

.alert-success {
    color: green;
}

.alert-error {
    color: #cc0000;
}
