* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea, select, button, label {
    font-family: inherit;
}

input, textarea, select {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75em center;
    background-size: 8px;
    padding-right: 24px;
}

textarea {
    resize: none;
    min-height: 100px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #2d89ef;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #2370d8;
}

label {
    margin-bottom: 5px;
}

input[type="checkbox"], input[type="radio"] {
    width: auto;
    margin-right: 5px;
    padding: 0;
}

input[type="file"] {
    border: none;
    padding: 0;
}

input[type="range"] {
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
}

.header {
    text-align: center;
    margin-bottom: 20px;
}
.footer {
    text-align: center;
    font-weight: bold;
    font-size:0.8rem;
    color:red;
}


.logo {
    width: 280px;
    height: 90px;
}

h1 {
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
        height: 60px;
    }

    h1 {
        font-size: 1.2rem;
    }
}