 body {
      background-color: #f0f5fc;
      font-family: 'Comic Sans MS', cursive;
      margin: 0;
      padding: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .login-container {
      background-color: #ffffff;
      border: 3px solid #a29bfe;
      border-radius: 30px;
      padding: 40px 50px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      text-align: center;
      position: relative;
    }

    .login-container img.user-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;

      padding: 5px;
      background-color: #dfe6e9;
    }

    .login-container h1 {
      font-size: 2em;
      margin-bottom: 30px;
      color: #2d3436;
    }

    input[type="text"],
    input[type="password"] {
      padding: 10px;
      border: 2px solid #74b9ff;
      border-radius: 20px;
      margin: 10px 0;
      width: 250px;
      font-size: 1em;
      font-family: inherit;
    }

    button {
      margin-top: 20px;
      padding: 10px 30px;
      font-size: 1em;
      background-color: #ff7675;
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    button:hover {
      background-color: #d63031;
    }

    /* Nubes en las esquinas */
    .corner {
      position: absolute;
      width: 200px;
      height: 200px;
      background-image: url('../../src/circulos.svg');
      background-size: cover;
      background-repeat: no-repeat;
      z-index: -1;
    }

    .top-left { top: 0; left: 0; }
    .top-right { top: 0; right: 0; transform: rotateY(180deg); }
    .bottom-left { bottom: 0; left: 0; transform: rotateX(180deg); }
    .bottom-right { bottom: 0; right: 0; transform: rotate(180deg); }

    .error {
      color: red;
      margin-top: 15px;
      font-weight: bold;
    }