.button-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-register-custom, .btn-login-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; 
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px; 
    border-radius: 6px; 
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
}

.btn-register-custom {
    background-color: #007bffa8;
}

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

.btn-login-custom {
    background-color: #28a745;
}

.btn-login-custom:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.btn-register-custom i, .btn-login-custom i {
    margin-right: 8px;
}
