@charset "UTF-8";
/* CSS Document */
    body {
      font-family: 'Montserrat', sans-serif;
      background: #f4f4f4;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      margin: 0;
    }

    .login-box {
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      width: 320px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      text-align: center;
    }
   
    .login-wrapper {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
    
    }

    .login-logo {
	width: 220px;
    height: auto;
		
    }

    .login-logo {
     width: 220px !important;
     height: auto !important;
     display: block;
  
     }


    input {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 16px;
    }

    button {
      width: 100%;
      padding: 12px;
      background: black;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
      background: #333;
    }

    .error {
      color: red;
      margin-top: 10px;
    }
 