body {
    font-family: 'Lato', sans-serif;
    padding: 0;
    margin: 0;
    background-color: #212222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.center-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container1 {
    max-width: 500px;
    width: 100%;
    background-color: #fff;
    padding: 80px;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(87, 125, 95, 0.966);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-field {
    width: 90%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: #4CAF50;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #45a049;
}

@media screen and (max-width: 600px) {
    .form-container1 {
        padding: 20px;
    }

    h2 {
        font-size: 24px;
    }

    .input-field {
        font-size: 14px;
    }

    button {
        font-size: 16px;
    }
}
