﻿.button-group {
    width: 100%;
}

.btn-animated {
    width: 150px;
    padding: 12px;
    border: none;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.25s ease;
    display: inline-block;
    text-align: center;
}

    .btn-animated:hover {
        transform: scale(1.05);
    }

.btn-login {
    background: linear-gradient(45deg, #0F172A 0%, #2563EB 50%);
    color: white;
}

    .btn-login:hover {
        background: linear-gradient(45deg, #3B82F6 0%, #2563EB 100%);
        color: white;
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
        transform: scale(1.07);
    }

.btn-create {
    background: linear-gradient(45deg, #28a745, #1e7e34);
    color: #ffffff;
    font-weight: 600;
}

    .btn-create:hover {
        background: linear-gradient(45deg, #34ce57, #28a745);
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
    }

.btn-update {
    background: linear-gradient(45deg, #0275d8, #0256a3);
}

    .btn-update:hover {
        background: linear-gradient(45deg, #2f91f2, #0275d8);
    }

.btn-cancel {
    background: linear-gradient(45deg, #dc3545, #b52a37);
}

    .btn-cancel:hover {
        background: linear-gradient(45deg, #e85a67, #dc3545);
    }

.a-cancel {
    color: #FFD700;
    text-decoration: none;
}

    .a-cancel:hover {
        color: #FFD700;
        text-decoration: none;
    }

