    *, *:before, *:after {
      box-sizing: border-box;
    }

body {
    font-family: "Roboto", sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    background: #07457c;
}

    .container-main {
      display: flex;
      min-height: 100vh;
      flex-direction: row;
    }

.left-panel {
    min-height: 200px;
    flex: auto;
    background: url('https://www.webautomacao.com.br/site/wp-content/uploads/2025/06/08.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

        .right-panel {
            flex: 1;
            background-color: #00447d;
            padding: 50px 30px;
            border-top-left-radius: 26px;
            border-bottom-left-radius: 26px;
            color: white;
            position: relative;
            /* Centralização do conteúdo interno 
            display: flex;
            justify-content: center; /* Centraliza na horizontal
            align-items: center; /* Centraliza na vertical */*/
        }

    @media (min-width: 768px) {
    .right-panel {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.login-box {
    max-width: 350px;
    margin: auto;
    width: 500px;
}

    h2 {
      font-size: 20px;
      font-style: italic;
      margin-bottom: 30px;
    }

    h2 span {
      font-weight: 900;
    }

    .form-floating > label {
      font-style: italic;
      font-weight: 700;
      color: #6c757d;
      font-size: 14px;
    }

    .form-control {
      font-style: italic;
      font-weight: 900;
      font-size: 14px;
      border-radius: 6px;
    }

    .form-floating {
      margin-bottom: 15px;
    }

    .login-btn {
      background-color: #ffcb2e;
      border: none;
      font-weight: 700;
      font-style: italic;
      color: #00447d;
    }

    .login-btn:hover {
      background-color: #e6b600;
    }

    .remember {
      color: white;
      font-size: 12px;
    }

    .remember a {
      color: white;
      float: right;
      font-size: 12px;
    }

    .pdv-logo {
      width: 150px;
      margin-bottom: 0px;
    }

        .access-banner-left {
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #00447d;
            border: 7px solid #ffcb2e;
            border-radius: 19px;
            padding: 12px 25px;
            color: white;
            font-style: italic;
            font-size: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 150px;
        }


    .access-banner {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #00447d;
      border: 3px solid #ffcb2e;
      border-radius: 19px;
      padding: 12px 25px;
      color: white;
      font-style: italic;
      font-size: 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 300px;
    }

    .access-banner span {
      font-weight: 900;
      font-style: italic;
      font-size: 16px;
    }

.access-button {
    background-color: #ffcb2e;
    color: #00447d;
    border: none;
    padding: 6px 18px;
    border-radius: 6px;
    font-weight: 900;
    font-style: italic;
    margin-top: 10px;
    font-size: 20px;
    cursor: pointer;
}

    .social-icons {
      position: absolute;
      bottom: 20px;
      right: 30px;
      color: #ffcb2e;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .social-line {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .social-line img {
      height: 18px;
    }

    @media (max-width: 768px) {
      .container-main {
        flex-direction: column;
      }

      .left-panel,
      .right-panel {
        flex: none;
        width: 100%;
        margin-left: 0;
        border-radius: 0;
      }

      .right-panel {
        padding: 40px 20px;
      }

      .access-banner {
        position: static;
        transform: none;
        margin: 30px auto 0;
        width: 90%;
        font-size: 14px;
        padding: 10px 20px;
      }

        .access-banner-left {
            position: static;
            transform: none;
            margin: 30px auto 0;
            width: 90%;
            font-size: 14px;
            padding: 10px 20px;
        }

      .access-button {
        font-size: 12px;
        padding: 5px 15px;
      }

      h2 {
        font-size: 18px;
      }

      .social-icons {
        position: static;
        margin-top: 30px;
        align-items: center;
        justify-content: center;
      }

      .social-line span {
        font-size: 13px;
      }

      .pdv-logo {
        width: 130px;
      }

      .login-box {
        max-width: 90%;
      }

    }
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: auto;
    outline: 0;
    color:dimgrey;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 1040;
}
.mt-3 {
    margin-top: 16px;
}
.link-amarelo {
    color: #ffcb2e !important;
    text-decoration: none;
}

    .link-amarelo:hover {
        color: #e6b600 !important; 
        text-decoration: underline;
    }

@media (max-width: 767px) {
    .access-banner-left {
        bottom: 10px;
        font-size: 15px;
        width: 100%;
        height: 80px;
        margin-top: 115px;
    }
}