      body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background: black;
      }
      p {
        margin: 0;
      }
      .container {
        max-width: 28vw;
        margin: 0 auto;
        min-height: 100vh;
        background-image: url('../img/bg.png');
        background-position: center;
        background-repeat: no-repeat;
      }
      header {
        text-align: center;
      }
      .logo {
        padding: 40px 0 20px;
        width: 100px;
      }
      .bigImg {
        width: 100%;
      }
      .app-image {
        margin: 20px 0;
        text-align: center;
        display: flex;
        justify-content: space-around;
      }
      .app-image img {
        width: 25%;
      }
      .application-text {
        padding: 20px 15px;
        line-height: 1.5;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.8);
      }
      .delete-text {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        padding: 8px 14px;
        font-size: 11px;
        margin: 20px 40px;
        color: #fff;
        opacity: 0.8;
        line-height: 1.6;
      }
      .delete-account .delete-title {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        font-weight: bold;
      }
      .form-group {
        display: flex;
        align-items: center;
        margin: 25px 25px 20px;
      }
      .form-group label {
        width: 50px;
        text-align: end;
        font-weight: bold;
        margin-right: 10px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
      }
      .form-group input {
        flex: 1;
        padding: 8px;
        border-radius: 7px;
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: rgba(0, 0, 0, 0.7);
      }
      .form-group input:focus {
        outline: none;
        border-color: rgba(202, 42, 42, 0.5);
        color: rgba(110, 26, 26, 0.7);
      }
      footer {
        padding: 30px 0 20px;
        display: flex;
        justify-content: center;
      }
      footer a {
        color: #fff;
        font-size: 14px;
        padding-left: 30px;
      }
      footer img {
        width: 105px;
      }
      .toast {
        top: 30%;
        left: 50%;
        opacity: 0;
        z-index: 10;
        padding: 35px 20px;
        color: #1c52f3;
        position: fixed;
        max-width: 70vw;
        font-size: 16px;
        font-weight: bold;
        border-radius: 6px;
        text-align: center;
        background-color: #201a1a;
        transition: all 0.3s ease-in-out;
        transform: translate(-50%, -30%);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        border: 1px solid #ffffff;
      }
      .toast-show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
      .toast-hide {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
        pointer-events: none;
      }
      .cursor {
        cursor: pointer;
      }
      .submit-button {
        width: 180px;
        padding: 8px 0;
        font-size: 14px;
        cursor: pointer;
        color: #ffffff;
        margin: 25px auto;
        text-align: center;
        background: #6667d0;
        border-radius: 20px;
      }
      @media only screen and (max-width: 450px) {
        .container {
          max-width: 100vw;
        }
        .toast {
          padding: 15px 10px;
        }
        footer {
          padding: 30px 0 10px;
        }
      }