.bek-form-container {
    max-width: 100%;
	width: 500px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.bek-form-header {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.bek-header-title {
    font-size: 30px;
    margin-bottom: 0;
}
.bek-form-group {
    margin-bottom: 24px;
}

.bek-label {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.bek-required {
    color: #ff0000;
    margin-left: 2px;
}

.bek-form-container .bek-input {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  border: 1px solid #000;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.bek-form-container .bek-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.bek-password-hint {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.bek-submit-btn {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bek-submit-btn:hover {
    background: #333;
}

.bek-submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.bek-switch-form {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.bek-switch-link {
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

.bek-switch-link:hover {
    color: #333;
}

.bek-error-message {
    color: #ff0000;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}
.or-title-with-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 20px;
}

.or-title-with-side::before,
.or-title-with-side::after {
  content: "";
  height: 1px;
  background-color: #000;
  flex: 1;
}
@media screen and (max-width: 768px) {
    .bek-form-container {
        max-width: 768px;
        width: 100%;
        margin: 0;
        padding: 0;
		overflow-y: scroll;
        position: relative;
        -webkit-overflow-scrolling: touch;
		min-height: 0;
		height: 90vh;
    }
}
