@charset "UTF-8";

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    height: 100dvh;
}

header {
    height: 10dvh;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    font-size: clamp(20px, 8dvw, 50px);
    margin-bottom: 3dvh;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

input {
    width: 80vw;
    max-width: 790px;
    padding: 10px;
    border-radius: 15px;
    outline: none;
    border: 1px solid #cac8c8;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

