@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Raleway", sans-serif;
    box-sizing: border-box;
    position: relative;
    outline: none;
}

body {
    background-image: url("back-2.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

p,b,u,i,h1,h2,h3,span,font,ul,li {
    cursor: default;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
}

html {
    scroll-behavior: smooth;
}

:root {
    --main: #FB7E14;
    --back: #F1F1F1;
    --altb: #3F3F3F;
}

section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

section > div {
    background-color: var(--back);
    border: none;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

section > div img {
    width: 120px;
    height: 40px;
    object-fit: cover;
}

section > div a {
    margin-bottom: 40px;
    text-decoration: none;
    font-weight: bold;
    color: var(--main);
    text-align: center;
}

section > div > a > font {
    font-size: 12px;
    margin-top: 10px;
    display: block;
    color: black;
}

section > div > form {
    display: flex;
    flex-direction: column;
}

section > div > a:last-of-type {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 14px;
    color: #adadad;
}

input, textarea {
    border-radius: 5px;
    padding: 6px 12px;
    border: 1px solid #d3d3d3;
    font-size: 16px;
    margin-bottom: 10px;
}

input[type="submit"] {
    width: 100%;
    height: 60px;
    background-color: var(--main);
    font-weight: bold;
    color: white;
    cursor: pointer;
    border: none; 
    margin-top: 30px;
}

@media screen and (min-width: 1000px) {
    input, textarea {
        transition: 0.2s ease all;
        --webkit-transition: 0.2s ease all;
    }

    input:focus, textarea:focus {
        border: 1px solid #878787;
    }

    input[type="submit"]:hover {
        background-color: #d86504;
    }
}