/* CSS Style for OKTA Authentication Portal */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.container {
  max-width: 80%;
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border:1px solid #a7a7a7;
}

.logo-company {
  display: block;
  margin: 0 auto;
  max-height: 60px;
  max-width: 200px;
  margin-bottom: 50px;
  }

.user-icon {
  display: block;
  border: 2px solid #a7a7a7;
  border-radius: 50%;
}

.line-left {
  display: block;
  border-top: 1px solid #a7a7a7;
  width: 30%;
  float:left;
  margin-top: 37px;
  margin-right:8%;
}

.line-right {
  display: block;
  border-top: 1px solid #a7a7a7;
  width: 30%;
  margin-top: -37px;
  float:right;
}

.login-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-screen h2 {
  margin: 20px 0 15px;
  color: #5e5e5e;
  float:left;
  width: 100%;
  font-size: 14px;
}

.login-screen input {
  width: 94%;
  padding: 10px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  color: #5e5e5e;
}

.login-screen button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #3F68DF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.warning-message {
  background-color: #ffebcc;
  color: #c98c1a;
  border: 1px solid #c98c1a;
  border-radius: 4px;
  padding: 10px;
  margin-top: 20px;
  text-align: center;
}

/* Mobile Responsive */
@media screen and (max-width: 500px) {
  .container {
    max-width: 80%;
    width: 90%;
  }
}
