/* ===== GLOBAL ===== */
body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

/* ===== CONTAINER ===== */
.container {
    text-align: center;
    width: 75%;
    max-width: 420px;
    min-width: 220px;
    padding: 18px 2vw;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

/* ===== NASLOV ===== */
.naslov {
    font-family: "Fira Code", monospace;
    font-size: 30px;
    margin-bottom: 18px;
    color: #cfd8dc;
    text-shadow: 0 0 6px rgba(100, 181, 246, 0.6);
}

/* ===== INPUT POLJA ===== */
.form input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 7px;
    border: none;
    font-size: 15px;
}

/* ===== GUMBI ===== */
.buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    padding: 10px 18px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-family: "Fira Code", monospace;
    transition: 0.3s;
    cursor: pointer;
    min-width: 90px;
}

.btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

/* ===== MEDIA QUERIES ===== */

/* Tableti */
@media (max-width: 1024px) {
    .naslov {
        font-size: 28px;
    }
    .container {
        width: 75%;
        max-width: none;
    }
    .form input {
        font-size: 15px;
        padding: 10px;
    }
    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Mobiteli */
@media (max-width: 600px) {
    .container {
        width: 75%;
        max-width: none;
        padding: 20px;
    }
    .naslov {
        font-size: 26px !important;
        margin-bottom: 20px;
    }
    .form input {
        font-size: 16px;
        padding: 12px;
        width: 75%;
    }
    .buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 16px;
        padding: 14px 0;
    }
}
