﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    border: none;
    outline: none;
    font-family: Poppins, sans-serif;
}

/* خليه للـ body بس مش لكل العناصر */
body, .content, input::placeholder, .input-box i, .button a, .remember a {
    color: #fff;
}

body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("https://i.postimg.cc/RFqSM2rc/bg.jpg");
    background-size: cover;
    background-position: center;
}

.content {
    width: 400px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(13px);
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .content h2 {
        font-size: 38px;
        font-weight: 700;
        text-align: center;
    }

    .content .input-box {
        position: relative;
        width: 100%;
        height: 55px;
        margin: 30px 0;
    }

        .content .input-box input {
            background: transparent;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 20px 45px 20px 20px;
            font-size: 16px;
            color: #fff;
        }

.input-box i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 18px;
}

.btnn {
    display: inline-block;
    background: #fff;
    color: #0a2862;
    width: 100%;
    border-radius: 30px;
    font-size: 16px;
    height: 45px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 30px;
    margin-top: 16px;
}

.text-danger,
.field-validation-error {
    color: #ff4d4d !important;
    font-size: 12px;
    margin-top: 6px;
    margin-left: 6px;
    display: block;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.button {
    text-align: center;
    margin-top: 10px;
}

    .button a {
        display: inline-block;
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
    }

        .button a:hover {
            color: #a7c7ff;
        }
