/* ===== Register ===== */
body {
    margin: 0;
    overflow-x: hidden;
    position: relative;
    font-family: "Segoe UI", sans-serif;
}

.divcard {
    margin: 40px auto;
    width: 55%;
    background: rgb(157, 146, 146);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 40px;
    color: white;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"] {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder { color: rgba(255,255,255,0.6); }

input:focus {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 8px #6ea8fe;
    color: white;
}

label { font-weight: bold; }

.btn-primary {
    background: #4c8fff;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    transition: .3s;
}
.btn-primary:hover { background: #1a6dff; transform: scale(1.05); }

/* Inner form area */
.w-login-inner {
    width: 80%;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .divcard { width: 75%; }
}
@media (max-width: 768px) {
    .divcard { width: 92%; padding: 28px 16px; }
    .w-login-inner { width: 100%; }
}
@media (max-width: 480px) {
    .divcard { width: 97%; border-radius: 12px; padding: 20px 12px; }
}
