:root {
    --btn-color: #fff;
    --bg-color: #eeeeee;
    --white-color: #ffffff;
    --btn-bg-color: #00519e;
    --btn-bg-hover-color: #002c5a;
    --btn-secondary-color: #224da4;
    --btn-secondary-bg-color: #fff;
    --btn-blurry-bg-color: rgba(255, 255, 255, 0.2);
    --btn-secondary-bg-hover-color: #cfe0ed;
    --btn-radius: 9999px;
    --font-family: "Helvetica Neue", sans-serif;
    --font-size-base: 16px;
    --font-size-large: 24px;
    --font-size-small: 13px;
    --font-weight-bold: 700;
    --border-color: #999;
    --box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.16);
    --transition-duration: 0.8s;
    --msg-bg-color: #333;
    --msg-border-color: #666666;
    --disabled-color: #8b96a8;
    --disabled-background-color: #5e6c80;
    --bg-gradient-color: radial-gradient(circle, #00519e 0%, #00519e 50%, #002c5a 100%);
}


@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLTPro-Th.otf") format("opentype");
    font-weight: 100;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLTPro-Md.otf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLTPro-Roman.otf") format("opentype");
    font-weight: regular;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLTPro-Hv.otf") format("opentype");
    font-weight: 700;
}

body {
    font-family: var(--font-family), serif;
    font-size: var(--font-size-base);
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box
}

.flex-column-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.input {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-top: 10px;
    padding: 12px;
    width: 80%;
    height: 1.75rem;
}

.margin-10{
    margin-top: 10px;
}

@media (max-width: 600px) {
    .input {
        box-sizing: border-box;
    }

    .password-reset-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .btn {
        min-width: 45%;
    }

    .btn-container{
        flex-wrap: wrap;
    }
}

.btn-disabled{
    cursor: not-allowed;
}

.main-background {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url("https://www.donauversicherung.at/fileadmin/03_service/meine-donau-neu/meinedonau_loginscreen.png");
}