﻿.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, #5A3FA3, #7A5CF4);
    color: #EDE7FF;
    border: 1px solid #7A5CF4;
    transition: 0.2s ease;
}

    .btn-login:hover {
        background: linear-gradient(45deg, #7A5CF4, #8E72FF);
        color: #FFFFFF;
        box-shadow: 0 0 12px rgba(122, 92, 244, 0.6);
        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;
}