h1
{
    text-align: center;
}

.form-container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    gap: 5rem;
    padding: 20px;
}

.registration-form
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 30%;
    padding: 20px;
    border-radius: 30px;
    background-color: white;
}

.form-header
{
    width: 100%;
    padding: 10px;
}

.form-fields
{
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.form-field-row
{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 10px;
    border: 2px solid white;
}

.form-field-row > input
{
    width: 100%;
    background: #D9D9D9;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

form > button
{
    padding: 10px 5rem;
    color: white;
    font-size: 20px;
    background: #6B6868;
    border-radius: 5px;
    border: none;
}

/* On the second form */

.price-plan
{
   display: flex;
   gap: 3rem; 
   align-items: center;
   justify-content: space-around;
   width: 100%;
}

.price-option
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.price-option > p
{
    font-size: 25px;
    font-weight: 600;
}

.price-option > strong:nth-child(1)
{
    font-size: 30px;
}

.price-option > p > span, strong > span
{
    font-size: 15px;
    color: #6B6868;
}

label
{
    color: #6B6868;
}

.form-footer-text
{
    text-align: center;
}

@media screen and (max-width: 1287px) 
{
   .registration-form
   {
    width: 90%;
   } 

   .form-fields
   {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
   }

   .form-field-row
   {
    width: 100%;
   }
}