.bodies {
    background-color: sienna;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: blanchedalmond;
    padding: 1.5rem; /* Reduced padding by 0.5rem (8px) */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 570px; /* Reduced max-width by 30px */
    width: 100%;
}

.title {
    text-align: center;
    color: sienna;
    margin-bottom: 1.25rem; /* Reduced margin-bottom by 0.25rem */
    font-family: 'Arial', sans-serif;
}

.cont label {
    display: block;
    margin-bottom: 0.5rem;
    color: sienna;
    font-weight: bold;
}

.cont input {
    width: 100%;
    padding: 0.4rem; /* Reduced padding by 0.1rem (2px) */
    margin-bottom: 0.9rem; /* Reduced margin-bottom by 0.1rem (2px) */
    border: 1px solid sienna;
    border-radius: 5px;
}

.cont input:focus {
    outline: none;
    border-color: #d2691e;
    box-shadow: 0 0 5px #d2691e;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-row .form-group {
    width: 48%;
}

.cont button {
    width: 100%;
    padding: 0.65rem; /* Reduced padding by 0.1rem (2px) */
    background-color: sienna;
    color: blanchedalmond;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cont button:hover {
    background-color: #d2691e;
}