﻿/* styling sheet for first landing page adn contact page, before the main site log in */




/*text settings for all items on the page, in general*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5rem;
}


.container {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)), url('../Images/4000winder.png');
    

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.row {
    width: 100%;
    padding: 0px, 80px;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0px;
    position: relative;
    z-index: 1;
}

    .navbar ul {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

        .navbar ul li {
            list-style: none;
        }

            .navbar ul li a {
                padding: 10px 18px;
                border-radius: 5px;
                font-family: sans-serif;
                font-size: 20px;
                color: #fff;
                text-decoration: none;
            }

                .navbar ul li a:hover {
                    background-color: #5d88d5;
                }

    .navbar h1 {
        color: #fff;
        font-size: 35px;
        font-weight: 500;
        text-transform: uppercase;
        margin-top: 10px;
    }

   


.content {
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    margin-bottom: auto;
}


.content h1{
    font-size: 48px;
    color: #fff;
    font-weight: 400;

}

    .content p {
        font-size: 25px;
        color: #fff;
    }

    .content a {
        text-decoration: none;
        margin-top: 20px;
        font-size: 19px;
        display: inline-block;
        letter-spacing: 2px;
        padding:15px 20px;
        background-color: #5d88d5;
        border-radius: 5px;
        color: #fff;
    }

    .content a:hover {
        background-color: #2d88d5;
    }
        /*==================== Footer ======================*/


footer {
    clear: both;
    position: relative;
    height: 50px;
    margin-top: -50px;
    font-size: 18px;
    color: white;
    text-align: center;
}

/*==================== Contact page ======================*/

.contactpage {
    display: flex;
    justify-content: space-evenly;
    margin: 0;
    position: absolute;
    top: 45%;
    left: 20%;
    transform: translateX(-50%);
    transform: translateY(-50%);
}

    .contactpage > .box {
        width: 550px;
        background-color: green;
        border: 1px, solid #2a66f6;
        border-radius: 5px;
        box-shadow: 5px 5px 3px #207ae9;
        margin: 30px;
        text-align: center;
        opacity: 0.6;
        
    }

    .contactpage .box h1{
        color: white;
        font-size: 35px;
        font-weight: 400;
    }

    .contactpage .box p {
        color: white;
        text-align: center;
        font-size: 25px;
        font-weight: 400;
        color: white;
    }

    .contactpage .box svg {
        color: white;
        margin-top: 30px;
        margin-bottom: 30px;
    }


    /*registration form page*/


.formArea {
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    margin-bottom: auto;
}


    .formArea h1 {
        font-size: 40px;
        color: #fff;
        font-weight: 400;
    }

    .formArea h2 {
        font-size: 25px;
        color: #fff;
        font-weight: 400;
    }



.registerform {
    width: 80%;
    max-width: 600px;
    margin: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    
}


.regbutton {
    color: blue;
    font-size: 25px;
    padding: 15px 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.registerbutton {
    text-decoration: none;
    margin-top: 20px;
    font-size: 19px;
    display: inline-block;
    letter-spacing: 2px;
    padding: 15px 20px;
    background-color: #5d88d5;
    border-radius: 5px;
    color: #fff;
}

form input, form textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f7f7f7;
    color: black;
    font-size: 16px;
}

    form input:focus,
    form textarea:focus,
    form input:hover,
    form textarea:hover 
    {
        outline: none;
        box-shadow: 0 0 5px #333;
    }

form button {
    display: block;
    width: 50%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: deepskyblue;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 20px;

   
    
}

form button:hover{
    background-color: green;
}