/* Apply Google Fonts */
body {
    font-family: 'Cormorant Garamond', serif;
    background: #478ed6; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container styling */
.signin-container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Heading */
.signin-container h2 {
    
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Form groups */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #6c757d;
    outline: none;
}

/* Button */
button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #030a71;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #495057;
}

/* Link */
.signin-container p {
    margin-top: 15px;
    font-size: 0.95rem;
}

.signin-container a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
}

.signin-container a:hover {
    text-decoration: underline;
}


body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #f8f9fa;
}

.navbar-brand {
   
    font-size: 1.8rem;
    color: #15568e;
}

h2 {
  
    font-size: 2.2rem;
    color: #6c757d;
}

.table-responsive {
    overflow-x: auto;
}

.btn-primary {
    background-color: #6c757d;
    border: none;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #495057;
}

/* style.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #004080;
}

.navbar-brand, .navbar a {
    color: #fff !important;
}

.card-header {
    background-color: #004080;
    color: #fff;
    font-weight: bold;
}

.table img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.table img:hover {
    transform: scale(1.5);
}

.btn-primary {
    background-color: #004080;
    border: none;
}

.btn-primary:hover {
    background-color: #003366;
}