:root {
    background-color: #02020b;
    --backGroundColour: #02020b;
    --black: #02020b;
    --white: #e5d4ed;
    --red: #5E0B15;
    --yellow: #F4E04D;
    --blue: #5941A9;
    --height: 57vh;
    --side: 300px;
    --widthArray: calc(var(--side) + var(--side));
    --blueshadow: 4px 4px 1px 1px var(--blue);
    position: relative;
  }
.page_7 {
    position: relative;
    min-height: 100vh;
    height: fit-content;
    width: 100%;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
  }
#page7{
    padding: 3rem;
}
.contact-left{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-right{
    width: 50%;
    flex-grow: 1fr;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}
.contact-form{
    padding: 1rem;
    height: 100%;
}
.contact-form{
    display: flex;
    flex-wrap: wrap;
}
.contact-hedding{
    text-align: center;
    width: 100%;
}
.contact-hedding p {
    color: #F4E04D;
}
.contact-info{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-basis: 100%;
}
.contact_parent{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: fit-content;
}
.contact-input{
    width: 100%;
    min-width: 40%;
    margin: 1rem;
    background-color: rgba(240, 248, 255, 0);
    border: 2px solid var(--white);
    min-height: 3rem;
    border-radius: 1.5rem;
    padding: 0rem 1rem 0rem 1rem;
    color: var(--white);
    font-size: 1rem;
    font-family: "Baumans", system-ui;
}
.textarea{
    padding: 1rem;
    height: 8rem;
}
.contact-form > .button{
    margin: 1rem;
}
.round{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: var(--blueshadow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    width: 100%;
    margin-top: 3rem;
}
.line-extend{
    content: "";
    background-color: var(--white);
    height: 3px;
    width: 2rem;
    border-radius: 1.5px;
}
.body{
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem;
    border-radius: 35px;
    box-shadow: var(--blueshadow);
    width: 80%;
}
.body a{
    text-decoration: none;
    color: var(--yellow);
}
.body a:hover {
    text-decoration: underline;
  }
.round > img{
    object-fit: contain;
}
.body-content{
    color: var(--yellow);
}
.contact-input:hover{
    border: 2px solid var(--yellow);
    transition: border 0.3s ease-in-out;
}
.contact-input:focus {
    border: 2px dashed var(--yellow);
    outline: none; /* Optionally remove the outline as well */
}