@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Standard: Mobile First (unter 768px) */
html,
body {
    font-family: "Montserrat", "Open Sans", Verdana, Arial, Helvetica, sans-serif;
    height: 100vh;
    background: url('bg-small.jpg');
    background-repeat:  no-repeat;
    background-position: 65% center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    padding-bottom: 6rem;
}

@media (min-width: 1600px) {
    body {
        background-image: url("bg.jpg");
        flex-direction: row;
    }
}

@media (min-width: 769px) and (max-width: 1599px) {
    body {
        background-image: url("bg-medium.jpg");
        flex-direction: row;
    }
}


.left, .right {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

@media (min-width: 769px) {
  .left, .right {
    width: 50%;
    height: 100vh;
  }
}


.icon {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("not_allowed.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    
}

.white {
    top: 5px;
    left: 5px;
    filter: grayscale(1) brightness(0) invert(1);
}

.blur {
    filter: grayscale(1) brightness(0) blur(100px);
}

.container {
    display: block;
    position: relative;
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
    padding: 45px 40px 30px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.10), 0 6px 15px rgba(0,0,0,0.12);
    margin: 40px 0 10px 0;
    width: 90%;
}

@media (min-width: 769px) {
    .container {
        width: 75%;
    }
}

.container h3 {
    font-family: "Montserrat", "Open Sans", Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.33;
    color: #1c1c1c;
    margin-bottom: 1rem;
}

.container p {
    font-family: "Montserrat", "Open Sans", Verdana, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #1c1c1c;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.container p strong {
    font-weight: 600;
}

.info {
    border-color: #005d98;
    background: linear-gradient(135deg, rgba(248,252,255,1) 0%, rgba(242,250,255,1) 25%, rgba(240,249,254,1) 79%, rgba(208,231,245,1) 100%);
}

.info::before {
    content: "";
    position: absolute;
    top: -32px;
    left: 15px;
    width: 60px;
    height: 60px;
    background-color: #f6fcff;
    background-image: url("information.svg");
    background-repeat: no-repeat;
    background-position: center center;
    border: 2px solid #f8f8f8;
    border-radius: 50px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.10), 0 6px 15px rgba(0,0,0,0.12);
    display: block;
}

.warn {
    border-color: #BE3A34;
    background: linear-gradient(135deg, rgba(254,251,251,1) 0%, rgba(252,245,244,1) 25%, rgba(252,245,244,1) 79%, rgba(247,226,223,1) 100%);
}

.warn::before {
    content: "";
    position: absolute;
    top: -32px;
    left: 15px;
    width: 60px;
    height: 60px;
    background-color: #f3d6d5;
    background-image: url("attention.svg");
    background-repeat: no-repeat;
    background-position: center calc(50% - 2px);
    background-size: 36px 36px;
    border: 2px solid #f8f8f8;
    border-radius: 50px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.10), 0 6px 15px rgba(0,0,0,0.12);
    display: block;
}


.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.button > a {
    display: flex;
    color: #A50034;
    transition: transform 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
    margin-top: 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 15px 35px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(247,247,247,1) 0%, rgba(235,235,235,1) 25%, rgba(230,230,230,1) 75%, rgba(218,218,218,1) 100%);
    background-color: #DDDDDD;
    width: fit-content;
    font-weight: bold;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.button > a:hover {
    border-color: #808080;
    box-shadow: 0 3px 3px rgba(0,0,0,0.10), 0 6px 15px rgba(0,0,0,0.12);
    transform: scale(1.025);
}
