﻿* {
    font-family: 'Droid Arabic Kufi' !important;
}

body {
    font-family: Arial, sans-serif;
    background-image: url("assets/img/mp8.jpg"); /* Replace with your image path */
    background-repeat: no-repeat; /* Prevent image tiling */
    background-position: center; /* Center the image */
    background-size: cover; /* Stretch image to cover the viewport */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative; /* Required for overlay */
}

.container {
    background: rgba(255, 255, 255, 0.7); /* Glassy effect with opacity */
    backdrop-filter: blur(5px); /* Add blur for glass effect */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    max-width: 440px;
    position: relative; /* Required for popup animation */
    animation: popup 0.5s ease-out;
}

/* Overlay styles */
.overlay {
    position: absolute; /* Overlap the body content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6); /* White with 50% opacity */
}

@keyframes popup {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

    .logo img {
        width: 150px; /* Adjust width as needed */
    }

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.input-field {
    margin-top: 10px;
    margin-bottom: 15px;
}

    .input-field label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .input-field input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }


.btn-submit {
    background-color: #0095ff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: block;
    width: 100%;
}

    .btn-submit :hover {
        background-color: #007bff;
    }


.forget-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
}

    .forget-password:hover {
        color: #000;
        text-decoration: underline;
    }

.yu-Login-logo {
    width: 72px;
    height: 72px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
