/* =========================
   RESET / BASIS
   ========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    background: #0a0f1e;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* =========================
   CONTAINER
   ========================= */
.container {
    background: #11172b;
    padding: 32px 36px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    text-align: center;
}

/* =========================
   TITEL
   ========================= */
.title {
    font-size: 28px;
    margin-bottom: 24px;
    color: #53c7ff;
}

/* =========================
   INPUTS
   ========================= */
.input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    background: #0e1630;
    border: 2px solid #27415e;
    border-radius: 8px;
    font-size: 15px;
    color: #ffffff;
}

.input::placeholder {
    color: #8fa3b8;
}

.input:focus {
    outline: none;
    border-color: #53c7ff;
}

/* =========================
   BUTTON
   ========================= */
.button {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    background: #53c7ff;
    color: #0a0f1e;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.button:hover {
    background: #3aa7dd;
}

.button:active {
    transform: scale(0.98);
}

/* =========================
   INFO TEXT
   ========================= */
.info {
    margin-top: 14px;
    font-size: 13px;
    opacity: 0.75;
}
