/* General Reset */

body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 22px;
    margin: 0;
    color: #003366;
}

form {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

input[type="text"] {
    width: 300px;
    padding: 8px;
    font-size: 16px;
    margin-right: 10px;
}

button {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.error {
    color: red;
    margin-bottom: 10px;
}

.pass-details {
    border: 1px solid #ccc;
    padding: 15px;
}

.pass-details h2 {
    font-size: 18px;
    margin-top: 0;
}

.row {
    display: flex;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.row:last-child {
    border-bottom: none;
}

.label {
    flex: 1;
    font-weight: bold;
}

.value {
    flex: 2;
}


/* Color styles mimicking screenshot */

.red {
    color: #c00;
    font-weight: bold;
}

.blue {
    color: #004080;
    font-weight: bold;
    text-decoration: underline;
}


/* Header */

header {
    display: flex;
    align-items: center;
    background: #0d47a1;
    /* Deep Blue */
    color: white;
    padding: 15px 20px;
    border-bottom: 4px solid #1976d2;
}

header img {
    height: 60px;
    margin-right: 15px;
}

header h1 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

header h4 {
    font-weight: normal;
    font-size: 1rem;
    opacity: 0.9;
}


/* Container */

.container {
    max-width: 650px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* Banner Heading */

.banner {
    background: #1976d2;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}


/* Form */

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

input[type="text"] {
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.2s ease-in-out;
}

input[type="text"]:focus {
    border-color: #1976d2;
    outline: none;
    box-shadow: 0 0 5px rgba(25, 118, 210, 0.4);
}


/* Buttons */

.btn {
    display: inline-block;
    background: #1976d2;
    color: white;
    padding: 8px 16px;
    margin: 6px 4px 6px 0;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0d47a1;
}


/* Small text */

.small {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 0;
}

hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}