* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    overflow: hidden;
    background: url('/images/Avtentikacija.svg') no-repeat center center/cover;
}

.authenticationForm 
{
    width: 475px;
    padding: 51.2px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    z-index: 9999;
    font-weight: 500;
}

input[type="email"], input[type="password"], input[type="text"] 
{
    width: 100%;
    padding: 17.08px;
    font-weight: 700;
    color: #555;
    background: #e8e8e8;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 19.5px;
}

::placeholder 
{
    color: #9c9b9b;
    font-weight: 700;
    font-size: 19.5px;
}

.forgotPassword 
{
    display: block;
    margin-top: 0.48px;
    text-align: left;
    color: #ea2a2a;
    font-weight: 700;
    text-decoration: none;
    font-size: 19.5px;
}

button 
{
    background: #ea2a2a;
    color: #fff;
    border: none;
    padding: 23px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.1s, transform 0.1s;
    font-size: 19.5px;
}

button:hover 
{
    background: #a50303;
}

h1 
{
    color: #ea2a2a;
    font-weight: 800;
    margin-bottom: 34.56px;
    font-size: 52px;
}

.link 
{
    margin-top: 42px;
    color: black;
    font-size: 19.5px;
    font-weight: 600;
}

.link a 
{
    color: #ea2a2a;
    font-weight: 700;
    text-decoration: none;
    font-size: 19.5px;
}

form 
{
    display: flex;
    flex-direction: column;
    gap: 32.8px;
}

@media (max-width: 900px) 
{
    body 
    {
        overflow-y: auto;
        padding: 16px;
    }

    .authenticationForm 
    {
        width: 100%;
        max-width: 400px;
        margin: auto;
        padding: 40px;
    }

    input[type="email"], input[type="password"], input[type="text"]
    {
        padding: 15px 19px;
        font-size: 17px;
    }
    
    ::placeholder 
    {
        font-size: 17px;
    }

    h1 
    {
        font-size: 36.48px;
        margin-bottom: 24px;
    }

    button, .forgotPassword, .link, .link a, ::placeholder 
    {
        font-size: 17px;
    }
}