/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eef2ff00, #f8fafc00);
}

/* WRAPPER */
.wrapper {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* min-height: 100vh; */
}

/* CARD */

.card {
    background: rgba(243, 245, 249, 0);
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 850px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    animation: fadeIn 0.6s ease;
}

/* TITLES */
h2 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #110d4e;
}

.subtitle {
    color: #666;
    margin-bottom: 15px;
    font-size: px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
    
}

.field {
    display: flex;
    flex-direction: column;
    
}


.full {
    margin-bottom: 5px;
}

/* INPUTS */
label {
    font-size: 11px;
    margin-bottom: 2px;
    color: #444;
}

input, select {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f9fafb;
    transition: all 0.25s ease;
    font-size: 12px;
    
} 

input:focus, select:focus {
    border-color: #4f46e5;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

/* CHECKBOX */
.checkbox {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 13px;
}

.checkbox input {
    margin-right: 10px;
}

.checkbox a {
    color: #4f46e5;
    text-decoration: none;
}

/* BUTTON */
.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79,70,229,0.3);
    background: linear-gradient(135deg, #7872e4, #2563eb);
}

/* FOOT TEXT */
 .secure {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #777;
} 

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 25px;
    }
}


