/*******************************************************************************
* Invoice Management System Styles                                               *
* Version: 2.0                                                                  *
* Author: Mohammad Abo Al Ghozlan - abu lkasem - MoHG                          *
*******************************************************************************/

html {
    margin: 0;
    padding: 0;
    background-image: url('../images/factory-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
}

#response {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    border-radius: 0;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
} */

.content {
    width: 100%;
    position: fixed;
    top: 60px;
    height: calc(100vh - 60px);
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 20px;
}

.contact {
    display: flex;
    width: 100%;
    max-width: 1080px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.28);
    border-radius: 5px;
    overflow: hidden;
}

.other {
    width: 60%;
    background-image: url('http://localhost/blog/pics/G_Blog_Logo.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.other:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(36, 51, 66), rgba(36, 51, 66, 0.81));
}

.info {
    position: relative;
    padding: 20px;
}

.info h2 {
    color: #16f1dc;
    font-size: 34px;
}

.info h3 {
    color: white;
    margin-top: 20px;
    letter-spacing: 1.2px;
}

.svg-wrap a {
    color: #bbbbbb;
    font-size: 16px;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.2s;
}

.svg-wrap a:hover {
    color: #16f1dc;
}

.form {
    width: 40%;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.form h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.form form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form input,
.form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline-color: #243342;
}

.form button {
    background-color: #243342;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.form button:hover {
    background-color: #1bf1dc;
}

@media (max-width: 900px) {
    .contact {
        flex-direction: column;
    }

    .other, .form {
        width: 100%;
    }
}