*{
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
}

body{
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.prijava-container{
    position: relative;
    max-width: 700px;
    width: 100%;
    padding: 25px;
    background: #feffff;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    
}

.prijava-container header{
    font-size: 1.5rem;
    color: #444;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #444;
}

.prijava-container form{
    margin-top: 40px;
}

.form .input-box{
    width: 100%;
    margin-top: 20px;
}

.input-box label{
    color: #444;
}

.form .input-box input{
    position: relative;
    height: 3rem;
    width: 100%;
    font-size: 1rem;
    color: #444;
    border-radius: 5px;
    border: 0.1px solid rgb(247, 191, 159);
    outline: none;
    padding: 0 15px;
    margin-top: 8px;
}

.form .input-box input::placeholder{
    color: rgba(182, 103, 0, 0.318);
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: auto;
}

.custom-select select {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 4px;
    appearance: none; 
    -webkit-appearance: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.custom-select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-select select option {
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
    
}

