body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: rgb(252, 134, 203);
    padding: 25px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input {
   input#password {
    width: 100%;
    padding: 30px;               /* أكبر */
    font-size: 15px;             /* خط أكبر */
    border: 3px solid #ff69b4;  /* pink border */
    border-radius: 20px;         /* زاوية أكثر round */
    outline: none;
    background-color: #fff0f5;  /* خلفية soft pink */
    color: #d63384;              /* نص باللون الوردي */
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input#password:focus {
    border: 3px solid #ff1493;    /* لون أغمق عند focus */
    box-shadow: 0 0 15px #ff69b4; /* glow effect */
}

input#password::placeholder {
    color: #ffb6c1; /* placeholder pink */
    font-size: 18px;
}


}

#result {
    margin-top: 15px;
    font-weight: bold;
}

.weak {
    color: rgb(95, 7, 58);
}

.medium {
    color: rgb(216, 96, 146);
}

.strong {
    color: rgb(252, 250, 251);
}
#bg-gif {
    position: fixed;   /* ثابت في الخلفية */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* يغطي الشاشة كاملة */
    z-index: -1;        /* تحت كل العناصر */
}

