* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.fcontainer {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: #3a3a3a;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="checkbox"] {
    margin-right: 0.5rem;
}

input:focus {
    outline: none;
    background: #454545;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

button, input[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: #00d4ff;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover,input[type="submit"]:hover {
    background: #00b8d9;
}

.error {
    color: #ff5555;
    text-align: center;
    margin-top: 1rem;
}

.success {
    color: #55ff55;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .fcontainer {
        margin: 1rem;
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    input, button {
        font-size: 0.9rem;
    }

    #ocenaForm{
        margin: 0 !important;
        border-radius: 0px!important;
        width: 100%;
    }
}

#ocenaForm{
    margin: 20px 0px;
}

#ocenaForm > label {
    margin-bottom: 0;
}

#ocenaForm > label > div{
    height: 50px!important;
    width: calc(100% - 50px);
    float: left;
    line-height: 50px;
    color: rgb(203, 203, 203);
    background-color: #3a3a3a;
    font-size: 20px;
    text-align: left;
    padding-left: 6%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#ocenaForm > input[type='number']{
    background-color: rgb(40, 40, 40);
    width: 50px;
    height: 50px;
    float: left;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 20px;
    color: green;
}

input[type='number']::placeholder{
    text-align: center;
    font-size: 20px;
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}