@charset "utf-8";
/* CSS Document */
.login-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .login-box {
      background-color: white;
      padding: 2rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      max-width: 400px;
      width: 100%;
    } 
    .login-box .title {
      margin-bottom: 1rem;
    }
    .login-box .field {
      margin-bottom: 1rem;
    }
    .login-box .button {
      background-color: #448CFF;
      border-color: transparent;
      color: white;
      font-weight: bold;
    }
    .login-box .button:hover {
      background-color: #386ec4;
    }
    .login-box .help {
      text-align: center;
      margin-top: 1rem;
    }
	@media (max-width: 460px) {
      .login-box {
        height: 100vh;
		width:100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
    }
      .toggle-password {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
		.icol{color: #858585;}
		.ipt{background-color: #f5f5f5;}
		
