﻿body {
}

/* Error message styling */
.error-message {
    color: red;
    margin-bottom: 10px;
}

.home-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
    background-color: #ecf0f1;
}

.home-logo {
    max-width: 300px;
    max-height: 300px;
    display: block;  
    margin-left: auto;  
    margin-right: auto; 
    margin-top: 5px;  
}

.home-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.home-description {
    font-size: 0.85rem;
    color: #111111;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    margin-top: 5px;
}

.home-details {
    font-size: 0.75rem;
    color: #111111;
    line-height: 1.4;
}

.text-cadet {
    color: forestgreen; /* or use hex: #5f9ea0 */
}

.text-lightseagreen {
    color: lightseagreen; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

.text-dodgerblue {
    color: dodgerblue; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

.text-indianred {
    color: indianred; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

.text-cornflowerblue {
    color: cornflowerblue; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

/* Center the login container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #ecf0f1;
}

/* The login form box */
.login-form {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    /* Heading */
    .login-form h3 {
        text-align: center;
        margin-bottom: 1.5rem;
        color: #333;
    }

/* Input group styling */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    background-color: #fafafa;
}

    .input-group i {
        margin-right: 0.5rem;
        color: #888;
    }

/* Input field styling */
.input-field {
    flex: 1;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1rem;
    padding: 0.25rem;
}

/* Submit button */
button[type="submit"] {
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    button[type="submit"]:hover {
        background-color: #0056b3;
    }

/* Error message */
.alert.alert-danger,
.error-message {
    color: #b00020;
    background-color: #fdd;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #f5c2c7;
    border-radius: 4px;
}
/* JsRuntime */
.swal-title-small {
    font-size: 14px !important;
    font-family: Calibri !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

.transfer-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table thead.custom-warning th {
    background-color: lightblue;
    color: black;
}
