﻿* {
    font-family: sans-serif;
    text-transform: capitalize;
}

body, html {
    background-color: #1A6800;
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(0deg, rgb(76 175 80 / 16%), rgb(76 175 80 / 16%)), url(../Content/Image/background.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}



.login-fb {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

    .login-fb .info {
        margin-top: 65px;
        margin-left: 34px;
    }

        .login-fb .info .image {
            width: 244px;
            margin-bottom: -14px;
            margin-left: -27px;
        }

            .login-fb .info .image img {
                width: 88%;
            }

        .login-fb .info h2 {
            color: black;
            font-weight: 100;
            margin: 8px 0 -12px;
            font-size: 28px;
        }

        .login-fb .info p {
            font-size: 15px;
            margin-top: 21px;
        }


/******************* form ****************/

form {
    background: rgb(245 246 247 / 0.79);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center;*/
    width: 377px;
    height: fit-content;
    position: relative;
    top: 244px;
    right: -122px;
    border-radius: 14px;
    padding: 10px;
}

    form #label-header {
        margin-bottom: 10px;
        color: #1A6800;
    }

    form #label-subheader {
        margin-top: 10px;
    }

    form h5 {
        margin-top: 10px;
        margin-bottom: 0px;
    }

    form input {
        width: 86%;
        padding: 10px;
        border-radius: 6px;
        outline: none;
        border: 1px solid #ccc;
        margin-top: 13px;
    }

        form input::placeholder {
            font-size: 17px;
            color: rgb(167, 167, 167);
            font-weight: 300;
        }

        form input[type="text"] + .text {
            display: none;
            font-size: 17px;
            width: 93%;
            height: 27px;
            margin-bottom: 0;
        }


        form input[type="submit"] {
            background: #ffc107;
            width: 70%;
            color: black;
            font-size: 15px;
            font-weight: bold;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

.validation-summary-errors {
    color: red;
    font-size: 13px;
    text-align: center;
}

    .validation-summary-errors ul {
        padding: 0;
    }

        .validation-summary-errors ul li {
            list-style: none;
        }
