.back-button a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #4a69bd;
    padding: 6px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}
  
.back-button a:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.login_form h2 {
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
}

.main_bt {
    background-color: #4a69bd;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.main_bt:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

