﻿
body {
    background-image: url('/uploads/images/7.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#contenir {
    background: rgba(0, 0, 0, 0.7); /* خلفية شفافة */
    padding:50px;
    right:50px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
   
    display:block;
    justify-content: center;
    align-items: center;
}

h3, h2 {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.form-group label {
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    border: none;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    height: 50px; /* ارتفاع أكبر */
    padding: 0 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.position-relative {
    position: relative;
}

#password {
    padding-right: 50px; /* مساحة للأيقونة */
}

#togglPass {
    position: absolute;
    right: 15px; /* تحديد موقع الأيقونة داخل مربع الباسورد */
    top: 40%;
  
    color:black;
    font-size: 25px;
    cursor: pointer;
}

#btn {
    background: linear-gradient(45deg, #28a745, #1e7e34);
    color: white;
    border: none;
    padding: 15px 30px; /* زر أكبر */
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    #btn:hover {
        background: linear-gradient(45deg, #1e7e34, #28a745);
    }

.animated-image {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}


