﻿/*section .signin {
    width: 400px;
    background: #FFFFFF;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 4px;
    border-color: #000000;
    border-width: 1px;
}

    section .signin .content {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

        section .signin .content h2 {
            font-size: 2em;
            color: #4287f5;
            text-transform: uppercase;
        }

        section .signin .content h3 {
            font-size: 2em;
            color: #ff0000;
        }

        section .signin .content .form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

            section .signin .content .form .inputBox {
                position: relative;
                width: 100%;
            }

                section .signin .content .form .inputBox input {
                    position: relative;
                    width: 100%;
                    background: #f0f0f0;
                    border: none;
                    outline: none;
                    padding: 25px 10px 7.5px;
                    border-radius: 4px;
                    color: #040404;
                    font-weight: 500;
                    font-size: 1em;
                }

                section .signin .content .form .inputBox i {
                    position: absolute;
                    left: 0;
                    padding: 15px 10px;
                    font-style: normal;
                    color: #aaa;
                    transition: 0.5s;
                    pointer-events: none;
                }

.signin .content .form .inputBox input:focus ~ i,
.signin .content .form .inputBox input:valid ~ i {
    transform: translateY(-7.5px);
    font-size: 0.8em;
    color: #fff;
}

.signin .content .form .links {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .signin .content .form .links a {
        color: #fff;
        text-decoration: none;
    }

        .signin .content .form .links a:nth-child(2) {
            color: #4287f5;
            font-weight: 600;
        }

.signin .content .form .inputBox input[type="submit"] {
    padding: 10px;
    background: #4287f5;
    color: #fff;
    font-weight: 600;
    font-size: 1.35em;
    letter-spacing: 0.05em;
    cursor: pointer;
}

input[type="submit"]:active {
    opacity: 0.6;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.item {
    padding: 8px 35px;
    font-size: 30px;
    color: green;
}

.signinbtn {
    background-color: #4287f5;
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
}

.loginerrtext {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #ff0000;
}*/

form {
    display: contents;
}

body {
    display: flex;
    flex-direction: column; /* Stacks header and main vertically */
    min-height: 100vh; /* Ensures the container takes at least the full viewport height */
    margin: 0; /* Resets default body margin */
    background-color: #111111;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    height: 100%;
}

header {
    /* Header content is at the top by default */
    padding: 0px;
    width: 100%;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the content along the main axis (vertical in this case) */
    align-items: center; /* Centers the content along the cross axis (horizontal) */
    flex-grow: 1; /* Allows the main content area to take up all remaining vertical space */
    width: 100%;
}

.cols {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}