﻿﻿::-webkit-scrollbar,
img::selection,
br,
a::selection,
h1::selection {
    background: none;
    display: none;
    pointer-events: none;
}

* {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0;
    margin: 0;
    color: black;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: none;
    border: none;
    outline: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    width: 100vw;
    min-height: 500px;
    height: 100vh;
    display: grid;
    place-content: center;
    background: #f4f2ee;
}

section {
    display: flex;
    max-height: 480px;
    min-height: 480px;
    height: 90vh;
    max-width: 800px;
    overflow: hidden;
    border: 1px solid;
}

#cover {
    flex: 1;
    height: 100%;
    position: relative;
}

    #cover * {
        color: #fff;
    }

#icon {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    filter: invert(1);
}

#sliderContainer {
    width: 100%;
    height: 100%;
}

    #sliderContainer div {
        width: 100%;
        height: 100%;
        position: relative;
    }

    #sliderContainer h1 {
        position: absolute;
        top: 50%;
        width: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #sliderContainer .about {
        position: absolute;
        bottom: 50px;
        width: 70%;
        height: 40px;
        display: flex;
        justify-content: space-between;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

.controlLabels {
    display: flex;
    justify-content: end;
    gap: 7px;
}

    .controlLabels label {
        border: 0.5px solid #fff;
        opacity: 0.7;
        width: 30px;
        height: 30px;
        display: grid;
        place-content: center;
        border-radius: 50px;
        padding-bottom: 4px;
        cursor: pointer;
    }

#sliderContainer #model1,
#sliderContainer #model2,
#sliderContainer #model3,
#sliderContainer #model4 {
    display: none;
}

#slide1:checked ~ #sliderContainer #model1,
#slide2:checked ~ #sliderContainer #model2,
#slide3:checked ~ #sliderContainer #model3,
#slide4:checked ~ #sliderContainer #model4 {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

#sliderContainer div img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.5px) brightness(0.9);
}

#loginForm {
    width: 350px;
    height: 100%;
    padding-top: 150px;
    background: #fff;
    padding-inline: 25px;
    white-space: nowrap;
}

img {
    cursor-pointer: none;
}

#createAccountForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-inline: auto;
    margin-block: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    flex: 1;
    padding: 7px 10px;
    font-size: 1em;
    width: 100%;
    border: 0.5px solid #eee;
}

input:focus {
    border: 0.5px solid #273348;
}

.login {
    font-size: 14px;
    display: flex;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    cursor: pointer;
    border: 0.5px solid #eee;
    margin-top: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

    .login:hover {
        background-color: #273348;
        color: whitesmoke;
    }

@media (max-width: 650px) {
    section {
        width: 300px;
    }

    #cover {
        display: none;
    }
}
