﻿@section Styles {
    <style >
    /* 🔹 Background setup */
    body {
        background: url('content\dashboard2.png') no-repeat center center fixed;
        background-size: cover;
        position: relative;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55); /* dark overlay */
        z-index: -1;
    }
    /* 🔹 Card Styling */
    .card {
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        animation: fadeInUp 0.8s ease;
    }
    /* 🔹 Inputs */
    .form-control {
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
            transform: scale(1.02);
        }
    /* 🔹 Buttons */
    .btn {
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
        }
    /* 🔹 Modals */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1050;
        animation: fadeIn 0.4s ease;
    }

    .modal-content {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        width: 100%;
        max-width: 400px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        animation: zoomIn 0.4s ease;
    }
    /* 🔹 Reset Password Dropdown */
    .reset-dropdown {
        max-width: 400px;
        margin: 20px auto;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        opacity: 1;
    }

    .hidden {
        display: none;
        opacity: 0;
    }
    /* 🔹 Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes zoomIn {
        from {
            transform: scale(0.9);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    </style>
}
