.container{
    display: flex;
    flex-direction: column;
    min-height: 490px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.form-container {
    width: 30%;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.account-form {
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-button-container {
    text-align: center;
}

.form-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.form-button:hover {
    background-color: #0056b3;
}


@media screen and (max-width:1135px) {

    .form-container {

        width: 40%;
    }
}


@media screen and (max-width:786px) {

    .form-container {

        width: 70%;
    }
}


@media screen and (max-width:423px) {

    .form-container {

        width: 90%;
    }
}