
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: #0f172a; 
    color: #f1f5f9;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
#head {
    color: #38bdf8; 
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

#form {
    background-color: #1e293b; 
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 380px;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}


input:focus {
    outline: none;
    border-color: #38bdf8; /* Bright Blue */
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}


#verbtn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

#verbtn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

#verbtn:active {
    transform: translateY(0);
}

#message {
    margin-top: 1rem;
    color: #94a3b8;
    text-align: center;
    font-size: 0.9rem;
}