.login_container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container img {
    display: block;
    margin: 0 auto;
    width: 150px;
}

.container h2, h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* تعديل عرض الشعار ليكون في عامود لوحده*/
section img {
    display: block;
    width: 7rem;
    margin: 0 auto;
}

.additions_header {
    padding: .8rem;
    color: #ffffff;
}

.two_column_additions {
    display: grid;
    padding: .8rem;

}

form {
    width: 80%;
    margin: 50px auto;
}

.feedback_input, #id_username, #id_password {
    color: #000000;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
    border-radius: 5px;
    background-color: transparent;
    border: 2px solid #6796e5;
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    outline: 0;

}

.feedback-input:focus {
    border: 2px solid #ffffff;
}

label {
    color: #4477ce;
    font-weight: 600;
}

.feedback_input option {
    color: #000000;
    background-color: #ffffff;
}

#id_duration {
    line-height: 3rem;
}


.form_message {
    height: 150px;
    line-height: 150%;
    resize: vertical;
}

[type="submit"] {
    margin-bottom: 1.5rem;
    font-family: 'Tajawal', sans-serif;
    width: 100%;
    background: #4477ce;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 1.3rem;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.3s;
    font-weight: 700;
    outline: none;
    border: none;
}

[type="submit"]:hover {
    background: #000;
    color: #ffffff;
    font-family: 'Tajawal', sans-serif;
}

.new_go_home {
    margin: 0 auto;
    width: 80%;
    display: block;
}

@media (min-width: 700px) {

    .section img {
        width: 10rem;
        margin: 5rem auto;
    }

    form {
        width: 70%;
    }

    .header_container {
        height: 25vh;
    }

    label {
        font-size: 1.5rem;
    }

    [type="submit"] {
        font-size: 1.7rem;
    }

    .two_column_additions {
        grid-template-columns: 1fr 2fr;
    }

    .new_go_home {
        width:40%;
        max-width: 20rem;
    }
}