body {
    min-height: 100vh;
    background: linear-gradient(135deg, #012d5a 0%, #013d7a 50%, #0a5298 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-login {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 40px 35px;
    justify-items: center;
    justify-content: center;
    justify-self: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    width: clamp(20rem, 45vw, 32rem);
    animation: fadeIn 1s ease;
}

.logo {
    color: white;
    font-family: sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    justify-self: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
margin-top: 0;
}

.welcome-message {
    color: white;
    font-family: "Playfair Display";
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;

}

#login-form {
    display: flex;
    flex-direction: column;
    align-items: center;

}

#register-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-box {
    border-radius: 8px;
    border: 1.5px solid #c5d5e8;
    background: #f4f8fd;
    width: 100%;
    height: clamp(2.5rem, 6vw, 3rem);
    padding: 0 12px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.input-box:focus {
    border-color: #013d7a;
    box-shadow: 0 0 0 3px rgba(1, 61, 122, 0.12);
    background: white;
}

.input-description {
    color: white;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: clamp(16rem, 40vw, 24rem);
    text-align: left;
    font-size: clamp(0.8rem, 2vw, 1.35625rem);
    margin-bottom: 10px;
}

/* Login button with transition */
.login-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    width: 100%;
    height: clamp(2.8rem, 7vw, 4rem);
    color: #FFF;
    font-family: Inter;
    font-size: clamp(1rem, 2.5vw, 1.76313rem);
    font-weight: 500;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-button:hover {
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(1, 61, 122, 0.4);
    transform: translateY(-3px);
}

.opret {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e8f0;  /* divider*/
    width: 100%;
    justify-content: center;
    color: white;
    margin-bottom: 0;
}

#register-button {
    color:  #97c9ff;
    font-weight: 600;
    transition: transform 0.2s ease;
}

#register-button:hover {
    cursor: pointer;
    transform: translateY(-3px);
}

.admin-login{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    margin-top: 16px;
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid #e0e8f0;  /* divider*/
    width: 100%;
    justify-content: center;
    color: white;
    margin-bottom: 0;
}

#admin-login-button{
    color: #97c9ff;
    font-weight: 600;
    transition: transform 0.2s ease;
}

#admin-login-button:hover{
    cursor: pointer;
    transform: translateY(-3px);
}

.admin-return-button{
    justify-self: left;
}
