@font-face {
    font-family: 'robotoblack';
    src: url('fonts/roboto-black-webfont.woff2') format('woff2'),
         url('fonts/roboto-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold';
    src: url('fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight';
    src: url('fonts/roboto-light-webfont.woff2') format('woff2'),
         url('fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotomedium';
    src: url('fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotothin';
    src: url('fonts/roboto-thin-webfont.woff2') format('woff2'),
         url('fonts/roboto-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #fff;
}
body{
    width: 100%;
    height: 100%;
    background: #fff;
}
.hide {
    display: none!important;
}
.alert {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    padding: 2rem;
    background: url(img/deco-2.svg) no-repeat;
    background-size: 40%;
    background-position: right bottom;
    background-color: #0f4897;
}
.logo{
    width: 15%;
    min-width: 120px;
    max-width: 200px;
}
.alert .msg {
    text-align: center;
    color: #fff;
}

.alert .msg h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.alert .msg p{
    font-size: 1.1rem;
}

.alert .msg-fail p{
    color: #f21b54;
}
.alert .msg-ok p{
    color: #54be5a;
}

.footer{
    width: 100%;
    background: #fff;
    color: #0e6a85;
    padding: 1rem;
    font-size: 0.8rem;
}
.footer .brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.footer .col-legal img {
    width: 60px;
    margin-right: 1rem;
}
.footer .col-brands img {
    max-width: 300px;
}
.footer .copy{
    text-align: center;
    font-size: 0.7rem;
    background: #8e143d;
    color: #fff;
    padding: 1rem;
}

.alert .msg form {
    margin-top: 2rem;
}

.alert .msg label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #fff;
}

.alert .msg input[type="text"],
.alert .msg input[type="number"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.alert .msg input[type="submit"] {
    background-color: #e1cd25;
    color: #000;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.alert .msg input[type="submit"]:hover {
    background-color: #6a3a1f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alert {
        padding: 1rem;
        background-size: 60%;
    }
    .logo {
        width: 30%;
    }
    .footer .brands {
        flex-direction: column;
        text-align: center;
    }
    .footer .col-legal {
        margin-bottom: 1rem;
    }
    .footer .col-legal img {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 540px) {
    html {
        font-size: 0.9rem;
    }
    .alert .msg h1 {
        font-size: 1.2rem;
    }
    .footer .col-brands img {
        width: 100%;
        max-width: 250px;
    }
}

