/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Reset box-sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Body styling with gradient background */
body {
    height: 100vh;
display: flex;
    justify-content: center;
    align-items: center;
background: linear-gradient(250deg, #000, #6c55a5, #000); 
   color: black;
}

body h2{
    padding: 0px;
    margin: 0px;
}

a:-webkit-any-link {
   
    text-decoration: none;
}


/* Login card container */
.login-card {
    background-color: white;
    padding: 30px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 450px;
    text-align: center;
}

/* Login card header */
.login-card h2 {
margin-bottom: 20px;
    font-weight: 600;
    font-size: 40px;
    color: #000000;
}

/* Form inputs */
.login-card .form-control {
    margin-bottom: 0px !important;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* Select input */
.login-card select.form-control {
    padding: 10px;
        font-size: 13px;
  height: 40px;           /* ensures full dropdown height */
    line-height: 1.5;
}

/* Buttons */
.login-card .btn-primary {
    background-color: #6c55a5;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    
}

.login-card .btn-primary:hover {
    background-color: #57448c;
}

/* Links inside login card */
.login-card a {
    color: #6c55a5;
    text-decoration: none;
}

.login-card a:hover {
    color: #57448c;
}

/* Error message styling */
.alert {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Center the logo above the title */
.login-logo {
    display: flex;
    justify-content: center; 
}

.login-logo img {
    max-width: 130px;  
    height: auto;
    display: block;
}


  .dashboard-card {
            background: #fff;
            padding: 40px 50px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            /*min-width: 550px !important;*/
        }

        h2 {
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 25px;
            color: #555;
        }

        form {
            margin-bottom: 15px;
        }

        button {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        .checkin {
            background: #28a745;
            color: #fff;
        }

        .checkout {
            background: #dc3545;
            color: #fff;
        }

        .logout {
            display: inline-block;
            margin-top: 20px;
            text-decoration: none;
            color: #007bff;
            font-weight: bold;
        }

        .logout:hover {
            text-decoration: underline;
        }

        .welcome-text {
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.employee-name {
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
    text-transform: capitalize;
}
