.container {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/bg.png');
    background-position: cover;
    background-size: cover;
    background-attachment: fixed;
}

.contact-content{
    width: 80%;
}

.contact-form-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px #cbcbcb, -5px -5px 10px #d9d9d9;
    padding: 30px;
    border-radius: 30px;
    background-color: #fff;
    gap: 40px;
}

.contact-text{
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    
}

.contact-text h2{
    font-size: 35px;
    color: gray(0, 0, 0, 0.514);
    text-decoration: underline;
    text-decoration-color: #83cbe4;
    margin-bottom: 20px;
}

.contact-text p{
    font-size: 20px;
    color: gray(0, 0, 0, 0.514);
    margin-bottom: 20px;
}

.contact-email-phone{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 30px auto;
}

.contact-ep-holder{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-ep-holder p{
    font-size: 25px;
    font-weight: bold;
    color: gray(0, 0, 0, 0.514);
    margin-bottom: 5px;
}

.contact-ep-holder a{
    font-size: 20px;
    font-weight: bold;
    color: #2f7ec1;
    transition: all 0.3s;
}

.contact-ep-holder a:hover{
    color: #83cbe4;
}

.form-holder{
    width: 50%;
}

.form-holder form{
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.form-holder form label{
    font-size: 15px;
    font-weight: bold;
    color: #2d3b82;
    margin-top: 10px;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.form-holder form input{
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 100%;
}

.form-holder form input:focus{
    outline: none;
    border-color: #2d3b82;
}

.form-holder form textarea{
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 100%;
    resize: none;
}

.form-holder form button{
    width: 30%;
    border: none;
    box-shadow: 5px 5px 10px #cbcbcb, -5px -5px 10px #d9d9d9;
    padding: 10px;
    border-radius: 30px;
    margin: 10px 0;
    background: #2f7ec1;
    transition: 0.3s all;
    color: white;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.form-holder form button:hover{
    background-color: #83cbe4;
}

@media (max-width: 600px) {
    .container {
        padding-top: 40px;
        min-height: 100vh;
    }

    .contact-content {
        width: 100%;
    }

    .contact-form-holder {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        border-radius: 15px;
        margin-top: 50px;
    }

    .contact-text,
    .form-holder {
        width: 100%;
        padding: 10px;
    }

    .contact-text h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .contact-text p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-email-phone {
        flex-direction: column;
        width: 100%;
        margin: 20px 0;
        gap: 15px;
    }

    .contact-ep-holder p {
        font-size: 18px;
    }

    .contact-ep-holder a {
        font-size: 16px;
    }

    .form-holder form button {
        width: 100%;
        margin: 10px 0;
    }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
    .contact-content {
        width: 95%;
    }

    .contact-form-holder {
        gap: 20px;
        padding: 25px;
    }

    .contact-text h2 {
        font-size: 28px;
    }

    .contact-text p {
        font-size: 17px;
    }

    .form-holder form button {
        width: 40%;
    }
}

