.home{
    background-color: var(--secondary-color);
}
.contacts{
    background-color: var(--secondary-color);
}
.applications{
    background-color: unset;
}
.portfolio{
    background-color: var(--secondary-color);
}
.applicationForm input,
.applicationForm textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.offerInputField{
    resize: none;
}
.resultMessage{
    width: 100%;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}
.resultMessage:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.applicationForm input:focus,
.applicationForm textarea:focus {
    outline: none;
    box-shadow: 0 2px 4px 2px #4d2591;
    transform: translateY(-2px);
}
.applicationForm button {
    padding: 1.5vh 25px;
    background: linear-gradient(45deg, #985dfc, #7a3fda);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 1vh;
}

.applicationForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.applicationForm{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40vw;
    height: fit-content;
    background-color: blueviolet;
    border-radius: 20px;
    padding: 20px;
    gap:1vh
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    height:100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/ContactMeBgImage.jpg");
}