* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: linear-gradient(120deg, #74ebd5, #9face6); */
        background: linear-gradient(180deg, rgb(104, 7, 7) 0%, rgb(173, 3, 3) 100%);
    }

    .login-container {
        /* background-color: #fff; */
        background: linear-gradient(#dbdde8, #191919);
        padding: 30px 40px;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        width: 570px;
    }

    .login-form h2 {
        margin-bottom: 20px;
        text-align: center;
        color: #333;
    }

    .form-group {
        margin-bottom: 15px;
    }

    label {
        display: block;
        margin-bottom: 6px;
        color: black;
    }

    input[type="text"],
    input[type="password"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        transition: border 0.3s;
    }

    input:focus {
        border-color: #ff6b6b;
        outline: none;
    }

    button {
        width: 100%;
        padding: 10px;
        background-color: #fc1b1b;
        border: none;
        border-radius: 6px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-top: 15px;
    }

    button:hover {
        background-color: #e75959;
    }

    .error-message {
        color: red;
        margin-top: 10px;
        text-align: center;
        display: none;
    }
    .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .logo img {
        max-width: 420px;
        height: auto;
    }