.border {
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none !important;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    padding: 20px 50px;
    height: 100%;
    transition: transform ease-in-out 0.25s; /* Add transition for smooth animation */
}

.form-button{
    width: 80px;
    height: 40px;
    border-radius: 45px;
    transition: all 0.6s;
    background: #780000;
    color:white;
    margin: 10px;
}
.form-button:hover {
    background: #a50c16;
    color: rgb(255, 255, 255);
}
.job-form-button{
    display: inline-block;
    outline: 0;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #780000;
    color: #fff;
    background-color: #780000;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 4px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1.5px 0px;
    font-weight: 800;
    font-size: 16px;
    height: 42px;
    margin: 10px;
}
.job-form-button:hover{
    background: 0 0;
    color: #780000;
}
.side-bar-button {
    border: 2px solid #A9A9A9; /* Adjust border style and color as needed */
    border-radius: 10px;
    color: gray;
    font-size: 30px;
    padding: 11px;
    margin: 10px;
    transition: transform 0.5s ease; /* Add transition for smooth animation */
}

.side-bar-button.flip {
    transform: scaleY(-1); /* Rotate the button when the .flip class is applied */
}
.red-border{
    box-shadow: 10px 8px 0px #780000;
    border-style: outset;
    border-color: #780000;
    border-radius:15px;
    margin: 10px;
    padding: 30px;
    margin-bottom: 50px;
}

