:root {
    --main-color: rgb(29, 79, 145);
    --primary-color: rgb(197, 232, 108);
    --secondary-color-azure: rgb(66, 152, 181);
    --secondary-color-grey: rgb(190, 198, 196);
}

.account-card {
    border-radius: 18px;
    padding: 32px;
    background: #ffffff;
    animation: fadeUp .5s ease;
    max-width: 420px !important;
    width: 100% !important;
}

/* General CareBridge GmbH colors */
body {
    margin: 0;
    padding: 0 !important;
    background: url('/assets/img/background2.jpg') no-repeat center center fixed;
    background-size: cover;
    animation: bgFade 1.5s ease-out forwards, bgZoom 20s ease-in-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--secondary-color-grey);
    transition: 0.2s;
}

.form-control:focus {
    box-shadow: 0 0 0 0.15rem var(--secondary-color-azure);
    border-color: var(--main-color);
}

.input-group-text {
    background: #f7faff;
    border-left: 0 !important;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.pwFieldEye:hover {
    color: var(--secondary-color-azure);
}

.pwFieldEye {
    position: absolute;
    right: 10px;
    top: 40%;
    color: black;
}

.login-btn {
    height: 48px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--main-color);
}

.login-btn:hover {
    background: var(--secondary-color-azure);
}

.reset-wrapper:hover p {
    text-decoration: underline;
}

.loginContainer {
    height: 100vh;
    padding: 0;
    display: table;
    width: 100%;
}

#contentContainer {
    margin: 0 auto !important;
    padding: 0 !important;
}

a {
    color: var(--main-color)
}

a:hover {
    color: var(--secondary-color-azure);
}

a:active {
    color: var(--primary-color);
}

.container-fluid {
    width: auto;
    margin: 0 !important;;
}

input {
    padding: 10px !important;
}

.loginLogo {
    max-height: 100px;
}

.dotted-button {
    text-decoration: none;
    border-bottom: 2px dotted var(--main-color);
    cursor: help;
    display: inline-block;
    line-height: 0.85;
}

.dotted-button:hover {
    color: var(--secondary-color-azure);
    border-bottom-color: var(--main-color);
}

.tooltip.big-tooltip .tooltip-inner {
    font-size: 0.75rem;
    width: 100%;
}

.font-weight-bold {
    font-weight: 600;
    font-size: 0.875rem;
}
