/* General body layout */
body.login-body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(to bottom right, #d71a28, #ffcd00, #ffffff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ghana flag header strip */
.flag-header {
    display: flex;
    width: 100%;
    height: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.flag-header .red { background-color: #d71a28; flex: 1; }
.flag-header .yellow { background-color: #ffcd00; flex: 1; }
.flag-header .green { background-color: #006b3f; flex: 1; }

/* Login card */
.login-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

.login-subtitle {
    color: #444;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Input styling */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffcd00;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #006b3f;
    box-shadow: 0 0 5px #006b3f;
}

/* Button styling */
.login-btn {
    background-color: #d71a28;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #006b3f;
}

/* Error message */
.error-message {
    background-color: #ffe4e4;
    color: #d71a28;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Demo info box */
.demo-box {
    background-color: #f9f9f9;
    border-left: 4px solid #ffcd00;
    padding: 10px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: left;
}

.demo-box h4 {
    color: #000000;
    margin-bottom: 5px;
}

.demo-box p {
    font-size: 13px;
    color: #333;
}

/* Footer note */
.footer-note {
    margin-top: 20px;
    font-size: 12px;
    color: #000000;
}
