﻿.LoginForm {
    /*background: #E6E9E9;*/
    background: rgba(230, 230, 233, 0.8);
    border-radius: 20px;
    margin-top: 10px;
    border-radius: 20px;
    padding: 10px;
    min-height: 240px;
}

    .LoginForm .inputtitle {
        padding-top: 20px;
    }


    .LoginForm .inputbutton > div > .hrefbutton {
        display: inline-block; /* Gør det muligt at tilføje bredde og højde */
        width: 100%;
        height: 35px;
        background: #BDD7EE;
        font-weight: bold;
        color: inherit; /* Bevarer tekstfarven */
        text-decoration: none; /* Fjerner understregning */
        border: 2px solid #70AD47;
        text-align: center;
        line-height: 35px; /* Centrerer teksten lodret */
        cursor: pointer;
    }


    .LoginForm .backlink {
        text-align: left;
        display: inline-block; /* Gør det muligt at tilføje bredde og højde */
        padding: 5px;
        background: #BDD7EE;
        font-weight: bold;
        color: inherit; /* Bevarer tekstfarven */
        text-decoration: none; /* Fjerner understregning */

        text-align: center;
        cursor: pointer;
    }




    .LoginForm .control-label {
        font-weight: normal;
        margin: 0;
        font-size: 12px;
    }



    .LoginForm label {
        font-weight: normal;
        margin-left: 10px;
    }

    .LoginForm .formular_overskrift_1 {
        margin-left: 5px;
    }

    .LoginForm H2 {
        text-align: center;
    }

    .LoginForm H3 {
        margin-left: 15px;
        font-size: 20px
    }

    .LoginForm input[required] {
        background-image: url('/styling/graphics/star.png');
        background-position: left top;
        background-repeat: no-repeat;
    }

    .LoginForm .input > div {
        padding: 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        margin: 5px;
    }


    .LoginForm input[type=text], input[type=email], input[type=password], select {
        width: 100%;
        height: 35px;
        margin: 0;
        border: none;
        background: #FFFFFF;
        padding: 5px;
    }

    .LoginForm .inputbutton {
        padding-right: 20px;
    }

        .LoginForm .inputbutton > div {
            margin-top: 5px;
        }

            .LoginForm .inputbutton > div > button {
                width: 100%;
                height: 35px;
                border: none;
                background: #BDD7EE;
                font-weight: bold;
                border: 2px solid #70AD47;
            }

    .LoginForm .inputlink {
        padding-top: 5px;
    }



    .LoginForm input[type=checkbox] {
        margin-top: 10px;
        display: inline-block;
    }

    .LoginForm .submitstatus {
        background: #ffd800;
    }














.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide the default checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* Slider design */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

    /* Knob inside the slider */
    .slider::before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

/* When the checkbox is checked */
input:checked + .slider {
    background-color: #4caf50;
}

    input:checked + .slider::before {
        transform: translateX(26px);
    }
