﻿
/* Reset & Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

h3, h4 {
    color: #2c3e50;
    font-weight: 600;
    text-shadow: 0 0 2px rgba(0,0,0,0.1);
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #0066cc;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Layout Styles */
.navbar {
    border-bottom: 2px solid #444;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 3px #fff;
}

.footer {
    padding: 1rem;
    text-align: center;
    background-color: #f0f0f0;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
}

/* Form Styles */
.form-horizontal {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-credential-field {
    background-color: #c5cedd !important;
}

.btn, .btn-primary {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #0078d4;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 4px #0078d4;
    transition: background-color 0.2s ease-in-out;
}

    .btn:hover, .btn-primary:hover {
        background-color: #005fa3;
    }

/* Card Styles */
.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
    padding: 1rem;
    margin-bottom: 2rem;
}

/* Utility */
.glow {
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
}

.text-danger {
    color: #a94442;
}

.text-info {
    color: #31708f;
}

.btn-success {
    background-color: #38a169 !important; /* Soft green */
    border-color: #38a169 !important;
    color: white !important;
    box-shadow: 0 0 10px rgba(56, 161, 105, 0.6) !important; /* Green glow */
}

    .btn-success:hover {
        background-color: #2f855a !important; /* Darker on hover */
        border-color: #2f855a !important;
        box-shadow: 0 0 12px rgba(47, 133, 90, 0.7) !important; /* Stronger glow on hover */
    }


.navbar-brand img {
    vertical-align: middle;
    margin-top: -4px; /* adjust as needed */
}

.navbar-brand span {
    position: relative;
    top: -3px; /* adjust as needed */
    display: inline-block;
}

.btn-secondary {
    background-color: #6c757d !important; /* Bootstrap default grey */
    border-color: #6c757d !important;
    color: white !important;
    box-shadow: 0 0 8px rgba(108, 117, 125, 0.6) !important; /* subtle glow */
    transition: background-color 0.2s ease-in-out;
}

    .btn-secondary:hover {
        background-color: #5a6268 !important;
        border-color: #545b62 !important;
        box-shadow: 0 0 10px rgba(90, 98, 104, 0.7) !important;
    }
