/* Login */

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

    html, body {
      height: 100%;
      font-family: Arial, sans-serif;
    }

    .container {
      display: flex;
        background:#3663a5;
      height: 100vh;
    }

    .left {
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f5f5f5;
    }

.left img{
    max-width:300px;
    height:auto;
    margin-bottom:20px;
}

    .form-container {
      width: 80%;
      max-width: 400px;
      background: white;
      padding: 40px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    .right {
      width: 50%;
      background-image: url('../images/background.jpg');
      background-size: cover;
      background-position: center;
        opacity:0.3;
    }

    h2 {
      margin-bottom: 20px;
      font-size: 24px;
    }

    input[type="text"],
    input[type="password"] {
      width: 100%;
      padding: 10px;
      margin: 10px 0 20px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    input[type="submit"] {
      width: 100%;
      padding: 10px;
      background-color: #3663a5;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
        padding:10px 20px;
        border:none;
        border-radius:5px;
    }

    input[type="submit"]:hover {
      background-color: #29364e;
    }