.logo {
    width: 100px;
    height: auto;
}

.button {
    display: inline-block;
    width: 80%;
    background: #007BFF;
    color: white;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
}
.button:hover {
    background: #0056b3;
}

.back-button {
    /*background: rgba(0, 123, 255, 0.77);*/
    display: inline-block;
    background: #898996;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    /*display: block;*/
    width: fit-content;
    margin: 10px 0 0 auto;
}
.back-button:hover {
    background: #0f5693;
}
.submit-button {
    background: #010f48;
    color: white;
    padding: 5px;
    font-size: 12px;
    border:  1px solid;
    border-radius: 5%;
    cursor: pointer;
    width: 90%;
    margin-top: 5px;
    text-decoration: none;
}
.submit-button:hover {
    background: #0056b3;
    font-style: bold;
}

.description_c {
    text-align: center;
    font-size: 15px;
    font-style: italic;
    color: #333;
    margin-bottom: 5px;
    margin: 5px;
}