﻿@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    font-family: 'Tajawal', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
   /* background-image: url('../images/bg-login.png');*/
    /*background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
  /*  overflow: hidden;*/
}

.login-container {
    width: 100%;
    max-width: 400px;
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
 
    background: rgba(255, 255, 255, 0.9); /* شفافية */
   
}

.tagline {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.imgcontainer {
    margin-bottom: 10px;
}
.footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 20px;
    padding: 10px 0;
}

    .footer p {
        margin: 0;
    }

img.avatar {
    width: 100px;
    border-radius: 50%;
}

form {
    width: 100%;
}

input[type=text], input[type=password], select {
    width: 100%;
    padding: 12px 15px;
    text-align:center;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

input[type=submit] {
    font-size: 18px;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    padding: 14px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    input[type=submit]:hover {
        opacity: 0.9;
        transform: scale(1.02);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

.container {
    margin-top: 10px;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .login-container {
        padding: 15px;
        margin: 10px;
    }

    .tagline {
        font-size: 20px;
    }

    input[type=submit] {
        font-size: 16px;
        padding: 12px;
    }
}
