.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: auto;
}

.container h1 {
    color: #004577;
    font-weight: 700;
}

.container a {
    color: #000;
    background: #faca0a;
    padding: .5rem 4rem;
    font-weight: 500;
    font-size: 13px;
}

.container a:hover {
    background: #ffb326;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 400px;
    padding: 1rem;
    border-radius: 5px;
    /* box-shadow: 2px 2px 3px #504f4f3b, -2px -2px 3px #504f4f3b, 2px -2px 3px #504f4f3b, -2px 2px 3px #504f4f3b; */
    border: 1px solid #cacaca;
}

.input_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input_box input {
    border: none;
    outline: none;
    background: #f8f8f8;
    padding: 5px;
    border-radius: 3px;
}

button {
    border: none;
    outline: none;
    padding: 1rem;
    font-size: 14px;
    font-weight: 600;
    background: #004577;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background: #03375c;
}

/* Responsive */

@media screen and (max-width: 1167px) {
    .container h1 {
        margin-top: .5rem;
        font-weight: 700;
    }
}

@media screen and (max-width: 420px) {
    .container {
        padding: 0 1rem;
    }
    .container h1 {
        margin-top: .5rem;
        font-size: 28px;
    }
    form {
        width: 100%;
        border-radius: 5px;
    }
}