@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 250px;
}

/*SCROLL*/

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #252525;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: black;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(45deg, white, rgb(201, 201, 201));
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 500;
}

h4 {
    font-weight: 400;
}

h5 {
    font-weight: 300;
}

h6 {
    font-weight: 100;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(to right, #121212, #000);
}

/*PRELOADER*/

#preloader {
    background: #000 url(/images/loader.gif) no-repeat center;
    background-size: 15%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.preloader-render {
    display: none;
}

form {
    display: flex;
    flex-direction: column;
    background: #fff;
    text-align: center;
    padding: 100px 60px 20px 60px;
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(71, 3, 6, 0.7);
}

form .kom img {
    padding-bottom: 100px;
}

form h1 {
    color: #121212;
    font-size: 30px;
    margin-bottom: 50px;
}

form label {
    margin-bottom: 50px;
}

form label .fa-solid{
    font-size: 20px;
    color: #121212;
    margin-right: 10px;
}

form label input {
    outline: none;
    border: none;
    color: #121212;
    border-bottom: solid 1px #121212;
    padding: 0 5px;
    font-size: 18px;
}

form label input::placeholder {
    color: rgba(37, 37, 37, 0.5);
}

form #button {
    color: #fff;
    border: none;
    background: linear-gradient(to right, #121212, #000);
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s ease 0s;
}

form #button:hover {
    font-weight: 700;
    color: #121212;
    background: linear-gradient(to right, #ccc, #fff);
}

form .ko img {
    width: 30%;
    padding-top: 100px;
}