﻿.login-panel {
  width: 100%;
}
.editor-line {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
}
.editor-line:last-child {
  margin-bottom: 0;
}
.edt-label {
  display: inline-block;
  width: 130px;
  padding: 10px 5px 0 0;
  text-align: right;
}
.edt-field {
  display: inline-block;
  flex-grow: 1;
  flex-basis: 0;
}
.edt-field input[type="text"],
.edt-field input[type="password"] {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ccc;
  -webkit-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.edt-field input[type="text"]:focus,
.edt-field input[type="password"]:focus {
  outline: none;
  border-color: #007bff;
}
.edt-field select {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ccc;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.edt-field select:focus {
  outline: none;
  border-color: #007bff;
}
.edt-field select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
  color: #999;
}
.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .radio-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding: 5px 10px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.radio-option:hover {
  background-color: rgba(0, 123, 255, 0.05);
}
.radio-option input[type="radio"] {
  cursor: pointer;
  margin: 0;
  width: 18px;
  height: 18px;
}
.radio-option input[type="radio"]:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}
.radio-option span {
  font-size: 14px;
  line-height: 1.5;
}
.radio-option:has(input[type="radio"]:checked) {
  background-color: rgba(0, 123, 255, 0.1);
  font-weight: 500;
}
.error {
  color: #dc3545;
  padding: 10px;
  margin: 10px 0;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.error span {
  font-size: 14px;
}
.login-button {
  padding-top: 20px;
  width: 100%;
}
.login-button button {
  float: right;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #007bff;
  border: none;
  cursor: pointer;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.login-button button:hover:not(:disabled) {
  background-color: #0056b3;
}
.login-button button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d;
}
.login-button button:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}
.main-content {
  background: none;
}
#loginFormBL {
  border: none;
  float: none;
  margin: 0 auto;
  width: 55%;
}
@media (max-width: 750px) {
  #loginFormBL {
    width: 85%;
  }
}
.editor-line[data-bind*="visible: isEventSelected"] {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.editor-line[data-bind*="visible: isEventSelected"]:not([style*="display: none"]) {
  animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}