﻿body {
    background-image: url("/Content/img/bg-01.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.loginform {
    padding: 50px;
}


.header-login {
    padding-bottom: 30px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: bolder;
}

.containerLogin {
    font-family: "Poppins", sans-serif;
    background-color: white;
    /*margin: 100px auto;*/
    margin: 4% auto;
    width: 100%;
    max-width: 25rem;
    height: auto;
    border-radius: 5px;
}

input {
    /* outline: none;
    border: none; */
    width: 86%;
    padding: 10px;
    outline: 0;
    border-width: 0 0 2px;
}

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

label {
    font-size: small;
}

.loginbtn {
    font-weight: 0;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(90deg, #0066cc 0%, #c500cc 100%);
    padding: 12px 127px;
    border: none;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
    border-radius: 50px;
    transition: 1000ms;
    transform: translateY(0);
}

    .loginbtn:hover {
        transition: 1000ms;
        background: linear-gradient(90deg, #0066cc 0%, #c500cc 100%);
        color: #ffffff;
        border: none;
        cursor: pointer;
    }

.socials {
    display: flex;
    padding: 0px;
    padding: 20px;
    width: fit-content;
}

p {
    font-size: smaller;
}

@media screen and (max-width: 425px) {
    .loginbtn {
        padding: 12px 30px;
        margin: auto;
        font-size: small;
        display: block;
    }

    .loginform {
        font-size: x-small;
        padding: 15%;
        width: 100%;
    }

    /*.containerLogin {
        width: 80%;
    }*/

    .containerLogin {
        font-family: "Poppins", sans-serif;
        background-color: white;
        /*margin: 100px auto;*/
        margin: 30% auto;
        width: 80%;
        max-width: 25rem;
        height: auto;
        border-radius: 5px;
    }

    input {
        width: 90%;
        padding: 10px;
        outline: 0;
        border-width: 0 0 2px;
    }
}

@media screen and (max-width: 320px) {
    .loginform {
        font-size: x-small;
        width: 100%;
    }

    .containerLogin {
        font-family: "Poppins", sans-serif;
        background-color: white;
        /*margin: 100px auto;*/
        margin: 30% auto;
        width: 80%;
        max-width: 25rem;
        height: auto;
        border-radius: 5px;
    }
}


nav {
    background-color: white;
}