/**Variables**/
:root{
    --primary_color: #23395d;
    --secondary_color: #2DCB70;
    --tertiary_color: #ffffff;
}
/**Variables**/

/**Form**/
.input_field {
    border: solid 1px var(--secondary_color);
    background-color: var(--tertiary_color);
    border-radius: 15px;
    padding: 10px;
    margin: 10px 10px;
}

/**Form**/

/**Text**/
label {
    font-size: x-large;
    text-align: justify;
    margin: 10px;
    color: var(--tertiary_color);
}

.suggestion_text {
    text-align: justify;
    color: var(--tertiary_color);
}

/**Text**/

/* Desktop Styles */
@media only screen and (min-width: 961px) {

    /**Div**/
    .main_portion_div {
        width: 60%;
    }

    .minor_portion_div {
        width: 30%
    }

    /**Div**/
}