* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


img {
    max-width: 200px;
    margin-bottom: 30px;
}


form {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.5s ease-out;
}

h1 {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
}


input {
    height: 45px;
    padding: 0 15px;
    border: none;
    border-bottom: 2px solid #333;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #0a0a0a !important;
    box-shadow: 0 0 0px 1000px #0a0a0a inset !important;
    -webkit-text-fill-color: white !important;
}

input::placeholder {
    color: #777;
}

input:focus {
    outline: none;
    border-bottom-color: #fff;
}


button {
    height: 45px;
    border-radius: 8px;
    background-color: #ffffff;
    border: none;
    background: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #ccc;
    transform: translateY(-1px);
}


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

}
