body {
    margin: 0;
    padding: 0;
    background-image: url('../Images/Construction_Glass_BG.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: lighten;
}

div.border {
    width: 400px;
    border: 2px solid #4c7273;
    border-radius: 7px;
    padding: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

h1.title {
    margin: 30px 0px 20px 0px;
    text-align: center;
    color: #4c7273;
    font-family: sans-serif;
}

h4 {
    margin: 5px 0;
    color: #4c7273;
    font-family: sans-serif;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
    padding: 8px;
    border: 2px solid #4c7273;
    border-radius: 5px;
}

.form-row-button {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: flex-end;
}

button {
    border: 2px solid #4c7273;
    border-radius: 5px;
    font-family: sans-serif;
    padding: 10px 20px;
    background-color: #4c7273;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

button.clear {
    border: 2px solid #4c7273;
    border-radius: 5px;
    font-family: sans-serif;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0);
    background-blend-mode: lighten;
    color: #4c7273;
    font-size: 15px;
}

span{
    color: red;
    font-family: sans-serif;
    font-size: 14px;
    margin-top: -15px;
}