﻿body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8; /* Soft light blue */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #CBDCEB;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
    position: relative; /* Added for absolute positioning */
}

    .login-container img {
        width: 100px;
        height: auto;
        margin-bottom: 20px;
    }

h1 {
    font-size: 22px;
    margin-bottom: 5px; /* Reduced space for the new text */
    color: #333;
}

.hospital-name {
    font-size: 11px; /* Small font size */
    margin-top:5px;
    color: #007bff; /* Change to a suitable color for your branding */
    margin-bottom: 20px; /* Space below the paragraph */
}

.input-group {
    position: relative; /* Added for the eye icon */
    margin-bottom: 20px; /* Space between fields */
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    padding-right: 40px; /* Add space for the eye icon */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

#togglePassword {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #007bff; /* Bootstrap primary color */
    font-size: 18px;
}

.remember-me {
    text-align: left;
    margin-bottom: 20px;
}

    .remember-me label {
        font-size: 14px;
        color: #333;
    }

button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button:hover {
        background-color: #0056b3;
    }

p {
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

body {
   
    background-image: url('../logos/loginbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    
}