* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
@font-face {
  font-family: "TRY Grtsk";
  src: url(../font/TRYGrtsk-Bold-subset.woff2);
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Involve;
  src: url(../font/Involve-SemiBold-subset.woff2);
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Involve;
  src: url(../font/Involve-Regular-subset-AaNumPunct.woff2);
  font-weight: 400;
  font-display: swap;
}
.homeModal,
.homeModalOverlay {
  position: fixed;
  bottom: 0;
  height: 100vh;
  width: 100%;
  left: 0;
}
.registerBtns {
  cursor: pointer;
}
.homeModal {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: flex;
}
.homeModalOverlay {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
}
.homeFormContainer {
  position: relative;
  z-index: 50;
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  padding: 40px 45px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.homeFormTop {
  display: flex;
  justify-content: space-between;
}
.homeFormTopTitle {
  font-size: 22px;
  margin: 0 0 20px;
  color: #000;
  font-weight: 700;
  font-family: sans-serif;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.closeButton {
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 4px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
}
.homeFormErrorText {
  color: #e53e3e;
  margin-bottom: 12px;
  font-size: 14px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  padding-top: 5px;
  padding-bottom: 5px;
}
.HomeFormRowInput,
.HomeFormRowLabel {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  border-left: none;
}
.HomeFormRow {
  margin-bottom: 20px;
}
.HomeFormRowLabel {
  display: block;
  margin-bottom: 6px;
  color: #000;
}
.HomeFormRowInput {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #828282;
  min-height: 48px;
  background-color: white;
  border-radius: 6px;
  font-weight: 400;
  outline: 0;
  height: 50px;
  transition: border-color 0.2s;
  padding-left: 75px;
}
.HomeFormRowInput::placeholder {
  color: #aaa;
}
.phone-input-container {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  gap: 10px;
}
.country-selector {
  position: relative;
  border-right: none;
  display: flex;
  margin-right: 0;
}
.selected-country {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #c9c9c9;
  position: absolute;
  bottom: -25px;
  background-color: #858585;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  min-height: 50px;
}
.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 41;
  max-height: 160px;
  overflow-y: auto;
  font-family: sans-serif;
}
.country-code {
  margin-left: auto;
  margin-right: 10px;
}
.country-option {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
}
.country-option:hover {
  background-color: #f3f7f8;
}
.country-option.selected {
  background-color: #e6f0fa;
}
#selectedCountryCode {
  font-family: sans-serif;
  margin-right: 10px;
}
