body {
            font-family: 'Poppins','Helvetica', sans-serif;
            background: url('bg_Login_Jamea.jpg') center/cover fixed; 
            background-color: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            flex-direction: column;
        }

        form {
            background-color: #ffffff;
	    opacity: 0.95;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            width: auto;
            max-width: 55%;
            text-align: center;
            position: relative;
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 10px;
            color: #495057;
            font-size: 14px;
            font-weight: bold;
            text-align: left;
            font-family: 'Poppins','Helvetica', sans-serif;
        }

        input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            box-sizing: border-box;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 14px;
            font-family: 'Poppins','Helvetica', sans-serif;
        }

        button {
            background-color: #0e4653;
            color: #ffffff;
            padding: 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            transition: background-color 0.3s ease;
            font-family: 'Poppins','Helvetica', sans-serif;
	    border-bottom: solid 5px #0e4653;
        }

        button:hover {
            background-color: #bfe7ef;
        }

        .success-message {
            display: none;
            background-color: #28a745;
            color: #ffffff;
            padding: 10px;
            border-radius: 4px;
            margin-top: 20px;
        }

        #formTitle {
            background: none;
            color: #181c32;
            font-size: 25px;
            font-weight: bold;
        }

        #logoContainer {
            text-align: center;
            margin-bottom: 20px;
            margin-top: auto;
        }

        #logoContainer img {
            width: 100px;
            height: auto;
            margin-bottom: 10px;
        }