
/* tableti */
@media (max-width: 1024px) {
    .naslov {
        font-size: 28px;
    }
    .btn {
        font-size: 17px;
    }
}
/* mobiteli */
@media (max-width: 600px) {
    .naslov {
        font-size: 22px;
    }
    .container {
        width: 75%;
        padding: 20px;
    }
    .btn {
        font-size: 16px;
    }
}
.btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}
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 { text-align:center; width:100%; max-width:400px; }
.naslov { font-family:"Fira Code",monospace; font-size:36px; margin-bottom:25px; }
.form input { width:100%; padding:10px; margin:10px 0; border-radius:5px; border:none; }
.buttons {
    margin-top: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.3s;
    font-family: "Fira Code", monospace;
}

.btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}
