*{
    margin: 0px;
    padding: 0px;
}

body{
    padding-top: 6vw;
    background-color: #eef3f2;
}

.top{
    padding: 1vw;
}
.top h1{
    font-size: 3.5vw;
    font-family: 'montserratExtraBold';
    color: #2a323d;
    margin-bottom: 2vw;
}
.top p{
    font-size: 2vw;
    font-weight: bold;
}

.info-wrapper {
    margin-top: 4vw;
    display: flex;
    justify-content: center;
    gap: 48px;
    text-align: center;
}
.info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}
.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.info-content {
    font-size: 1.3vw;
    line-height: 1.5;
}

.message {
    box-sizing: border-box;
    font-family: 'montserratBold';
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #eef3f2;
}

.form-container {
    margin-top: 3vw;
    margin-bottom: 5vw;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.form-container h1 {
    padding: 0px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1vw;
    font-size: 2rem;
}
.form-group {
    margin-bottom: 2vw;
}
input, textarea {
    font-family: 'montserratRegular';
    width: 100%;
    padding: 1vw;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.3vw;
    transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
}
textarea {
    resize: vertical;
    max-height: 300px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: white;
    color: #073884;
    border: 2px solid #073884;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #073884;
    color: white;
}
.error {
    border-color: #e74c3c;
}
::placeholder {
    color: #666;
}

/*------------- TABLET VIEW --------------*/
@media (max-width: 800px) {
    body{
        padding-top: 9vw;
    }
    .top h1{
        font-size: 3vw;
        font-family: 'montserratExtraBold';
        color: #2a323d;
        margin-bottom: 2vw;
    }
    .top p{
        font-size: 2vw;
        font-weight: bold;
    }

    .info-content {
        font-size: 1.5vw;
        line-height: 1.5;
    }

    .message {
        box-sizing: border-box;
        background-color: #eef3f2;
    }    
    .form-container {
        margin-top: 3vw;
        margin-bottom: 5vw;
        background-color: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 70vw;
    }    
    .form-container h1 {
        margin-bottom: 2rem;
        font-size: 3vw;
    }
    input, textarea {
        font-size: 2vw;
    }
    input:focus, textarea:focus {
        outline: none;
        border-color: #3498db;
    }
    textarea {
        resize: vertical;
        min-height: 150px;
    }
    
    .submit-btn {
        font-size: 2vw;
        font-family: 'montserratRegular';
    }
}

/*------------- PHONE VIEW --------------*/
@media (max-width: 650px) {
    .top{
        padding: 5vw;
        padding-bottom: 0vw;
    }
    .top h1{
        font-size: 4.8vw;
        font-family: 'montserratExtraBold';
        color: #2a323d;
        margin-bottom: 1vw;
    }
    .top p{
        font-size: 3vw;
        font-weight: bold;
    }

    .info-content {
        font-size: 2.5vw;
        line-height: 1.5;
    }

    .message {
        box-sizing: border-box;
    }    
    .form-container {
        padding: 10vw;
        margin-top: 1vw;
        margin-bottom: 1vw;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 80vw;
    }    
    .form-container h1 {
        margin-bottom: 7vw;
        font-size: 5vw;
    }
    input, textarea {
        font-size: 3vw;
    }
    input:focus, textarea:focus {
        outline: none;
        border-color: #3498db;
    }
    textarea {
        resize: vertical;
        min-height: 150px;
    }
    .submit-btn {
        font-size: 3.5vw;
        padding: 2vw;
    }
}

