/*
    Created on : 2026-06-06
    Updated on : 2026-06-06
    Author     : CM.
*/

* {
    font-family: system-ui;
    font-size: 1em;
    color: black;
}
html, body {
    box-sizing: border-box;
    color-scheme: light;
}
a {
    text-decoration: none;
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80dvh;
    margin: 2rem auto 0 auto;
    width: auto;
    max-width: 1000px;
    border: silver 1px solid;
}
#footer {
    padding: 10px;
    width: 100%;
    text-align: center;
}
form {
    margin: 3rem 0;
}
input{
    padding: 0.3rem;
    margin: 0.5rem;
}
input[type=text] {
    width: 15rem;
}
#response {
    color: red;
}
.logo-container {

    img {
        width: clamp(400px, 20vw, 50%);
        height: auto;
    }
}
