﻿/************************** Admin Panel */
body {
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
    text-align: center;
    color: #01579b;
    margin-top: 40px;
    font-weight: bold;
}

.dashboard-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.dashboard-box {
    background-color: #0288d1;
    color: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0, 150, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .dashboard-box:hover {
        background-color: #0277bd;
        transform: translateY(-4px);
    }

    .dashboard-box i {
        font-size: 3rem;
        margin-bottom: 15px;
        color: #b3e5fc;
    }

@media (max-width: 600px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
}

/***************************************/

/***************************login Panel*/


.login-box {
    width: 300px;
    margin: 100px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ccc;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

loginbutton {
    width: 100%;
    padding: 10px;
    background-color: dodgerblue;
    color: white;
    border: none;
    margin-top: 15px;
    border-radius: 5px;
}

.loginerror {
    color: red;
    margin-top: 10px;
}

/******************************************************88*/