@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 7px;
}

h1 {
    color: #ccc;
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

form label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ccc;
    border-radius: 7px;
}

input,
textarea,
button {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    outline: none;
    color: #333;
    border-radius: 7px;
}

textarea {
    height: 6em;
}

input[type="submit"],
button {
    background: #333;
    color: #ccc;
    cursor: pointer;
    border-radius: 7px;
}

input[type="submit"]:hover,
button:hover {
    color: #333;
    background: #ccc;
    border-radius: 7px;
}

.logo {
    width: 150px;
    margin: 0 auto;
    display: block;
    border-radius: 7px;
}

footer {
    text-align: center;
    margin-top: 7px;
    font-size: 1.0rem;
    color: #ccc;
    text-decoration: none;
    background-color: #333;
    padding: 10px;
    border-radius: 7px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    border-bottom: none;
}

@media (max-width: 990px) {
    .logo {
        width: 100px;
        margin: 0 auto;
        display: block;
        border-radius: 7px;
    }


    footer {
        text-align: center;
        margin-top: 7px;
        font-size: 0.8rem;
        color: #ccc;
        text-decoration: none;
        background-color: #333;
        padding: 10px;
        border-radius: 7px;
    }

    footer a {
        color: #ccc;
        text-decoration: none;
        border-bottom: none;
    }
}