﻿/* StyleSheet1.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Slightly brighter background for contrast */
}

/* Navbar Branding */
.navbar-brand {
    letter-spacing: 1px;
}

/* Navigation Links */
.nav-link {
    color: #495057 !important; /* Darker text for readability in the white navbar */
    padding: 12px 20px;
    transition: 0.3s;
    font-weight: 500;
}

    .nav-link:hover {
        color: #0d6efd !important; /* Turns blue on hover */
        background: rgba(13, 110, 253, 0.05);
        border-radius: 8px;
    }

/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    background-color: #ffffff;
}

/* --- BuildxConnect Professional Buttons --- */

/* The Login/Register Action Buttons */
.btn-primary, .btn-success, input[type="submit"], .asp-button {
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Standard Login Button (Blue) */
input[type="submit"], .btn-primary {
    background-color: #0d6efd;
    color: white;
}

    input[type="submit"]:hover, .btn-primary:hover {
        background-color: #0b5ed7;
        transform: translateY(-2px); /* Slight lift on hover */
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    }

/* Clear/Cancel Buttons (Gray) */
.btn-secondary, input[type="reset"], .btn-clear {
    background-color: #6c757d;
    color: white;
}

    .btn-secondary:hover {
        background-color: #5c636a;
        transform: translateY(-2px);
    }

/* --- Form Input Visibility --- */
input[type="text"], input[type="password"], input[type="email"], textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

/* Sidebar (Keep for Admin/Worker Dashboards) */
.sidebar {
    min-height: 100vh;
    background: #212529;
    color: white;
    position: fixed;
    width: 240px;
}
/* Custom Button Hover Effects */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        transform: translateY(-3px); /* Subtle lift effect */
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    }

.btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
}

/* Ensure form container looks clean */
.form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}