* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contactForm {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.5),#356ab5), url(../pages/landscape/1-main.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
}

hr {
    width: 90px;
    margin: auto;
    margin-bottom: 34px;
    color: #fff;
}

form {
    width: 90%;
    max-width:  600px;
}
.input-group {
    margin-bottom: 30px;
    position: relative;
}
input, textarea {
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 15px;
    border-radius: 7px;
}
label {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: 0.2s;
}
button {
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width: 100%;
    cursor: pointer;
    border-radius: 7px;
}
input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {
    top: -35px;
    font-size: 14px;
}
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row .input-group {
    flex-basis: 48%;
}


p.ridge {
    border-style: ridge;
}

#my-form-status {
    color: #fff;
    font-size: large;
}