    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh; 
        background-size: cover; 
        background-position: center; 
        background-attachment: fixed; 
    }

    .login-container {
        width: 100%;
        max-width: 400px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95); 
        border-radius: 8px;
        box-shadow:0 0 5px rgba(0, 0, 0, 0.766);
        transition: box-shadow 0.3s ease-in-out;
        animation: flipAnimation 2s forwards;
    }

    .login-container:hover {
        box-shadow: 0 0 10px rgb(236,148,34,255); 
    }

    .login-container .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .login-container .logo img {
        max-width: 100px; 
        height: auto;
    }

    .login-container h1 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 24px;
        color: #333;
    }

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

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: #555;
    }

    .form-group input {
        width: 95%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
    }

    .form-group input:focus {
        outline: none;
        border-color: #EC9422;
        box-shadow: 0 0 4px rgba(0, 123, 255, 0.2);
    }

    .btn {
        width: 70%;
        padding: 10px;
        font-size: 16px;
        background-color: #fff; /* White background */
        border: 2px solid #000; /* Black border */
        border-radius: 5px;
        color: #000; /* Black text color */
        cursor: pointer;
        display: block; 
        margin: 0 auto;
        text-align: center; /* Ensures text stays centered */
        transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
    }

    .btn:hover {
        background-color: #EC9422;
    }

    .form-footer {
        text-align: center;
        margin-top: 15px;
    }

    .form-footer a {
        color: #9a1b1e;
        text-decoration: none;
    }

    .form-footer a:hover {
        text-decoration: underline;
    }

    .logo img {
        max-width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* REGISTER */
    /* Container */
    .register-container {
        width: 100%;
        max-width: 500px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        box-shadow:0 0 5px rgba(0, 0, 0, 0.766);
        text-align: center;
        transition: box-shadow 0.3s ease-in-out;
        animation: flipAnimation 2s forwards;
    }

    .register-container:hover {
        box-shadow: 0 0 10px rgb(154,27,30,255); 
    }

    .register-container h1 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 24px;
        color: #333;
    }

    /* Form Header */
    .form-header h1 {
        margin: 0 0 20px;
        font-size: 24px;
        color: #333;
    }

    .register-form-footer{
        text-align: center;
        margin-top: 15px;
    }

    .register-form-footer a {
        color: #f0c919;
        text-decoration: none;
    }

    .register-form-footer a:hover {
        text-decoration: underline;
    }

    .register-form-group {
        margin-bottom: 15px;
        text-align: left;
        width: 100%; 
        max-width: 400px; 
        text-align: left; 
        margin: 0 auto;
    }

    .register-form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: #555;
    }

    .register-form-group input {
        width: 95%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
    }

    .register-form-group input:focus {
        outline: none;
        border-color: #9a1b1e;
        box-shadow: 0 0 4px rgba(0, 123, 255, 0.2);
    }

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

    .register-btn {
        width: 70%;
        padding: 10px;
        font-size: 16px;
        background-color: #fff; /* White background */
        border: 2px solid #000; /* Black border */
        border-radius: 5px;
        color: #000; /* Black text color */
        cursor: pointer;
        display: block; 
        margin: 0 auto;
        text-align: center; /* Ensures text stays centered */
        transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
    }

    .register-btn:hover {
        background-color: #bc3134;
    }

    @keyframes flipAnimation {
        0% {
            transform: rotateY(180deg); 
            opacity: 0; 
        }
        100% {
            transform: rotateY(0deg); 
            opacity: 1; 
        }
    }

    @media (max-width: 480px) {
        .login-container {
            padding: 15px;
        }

        .login-container h1 {
            font-size: 20px;
        }

        .form-group input, .btn {
            font-size: 14px;
        }

        .register-container h1 {
            font-size: 20px;
        }

        .register-container {
            padding: 15px;
        }
        
    }
