﻿html, body {
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding: 0;
    font-family: "Kumbh Sans", serif !important;
    background-color: #fcfcfc !important;
    overflow: auto;
}

.center-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Let skyggeeffekt */
    width: 350px; /* Juster bredden efter behov */
    text-align: center;
}

.logo {
    width: 150px; /* Juster logoets bredde */
    margin-bottom: 20px;
}

.input-field {
    width: calc(100% - 22px); /* Tilpas bredden for at tage højde for padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Sikrer at padding og border ikke øger elementets bredde */
}

.checkbox-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.forgot-password {
    color: #007bff; /* Blå farve for link */
    text-decoration: none;
}

.login-button {
    background-color: #32CC97; /* Grøn farve for knap */
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

/** .login-button:hover {
                background-color: #204241; 
            }**/

input[type=checkbox], input[type=radio] {
    margin: 0px 0 0;
    margin-top: -2px;
    line-height: normal;
}

.input-group-addon {
    background-color: white;
    border: 1px solid #ccc;
    border-right: 0px;
}
.info-container {
    width: 350px;
}

.alert-warning {
    background: #fff8e1;
    border: 1px solid #ffe0b2;
    color: #a67c00;
    /**font-size: 0.98rem;**/
    border-radius: 8px;
    margin-top: 18px;
}

.alert-info {
    background: #f7fafd;
    border: 1px solid #e3f2fd;
    color: #1b4b72;
    /**font-size: 0.98rem;**/
    border-radius: 8px;
    margin-top: 14px;
}

.divider {
    border-top: 1px solid #eee;
    margin: 24px 0 16px 0;
}

.login-title {
    font-weight: 700;
}

.login-subtitle {
    color: #666;
    margin-bottom: 18px;
}
