@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
     font-family: "Inter", sans-serif;
     background-color: #fdfdfd;
}

.inter {
     font-family: "Inter", sans-serif;
}

.Loading {
     display: flex;
     position: fixed;
     top: 0;
     left: 0;
     z-index: 9999;
     background-color: #eeeeee;
     width: 100%;
     height: 100vh;
     align-items: center;
     justify-content: center;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease, transform 0.3s ease;
}

.Loading.Active {
     opacity: 1;
     pointer-events: auto;
}

.Loading_Spinner {
     width: 60px;
     height: 60px;
     border: 5px solid #686767;
     border-top: 5px solid #000000;
     border-radius: 50%;
     animation: spin 1s linear infinite;
}

@keyframes spin {
     to {
          transform: rotate(360deg);
     }
}

.UnderlineLink {
     text-decoration: none;
}

.UnderlineLink:hover {
     text-decoration: underline;
}

.Input__Container {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
     width: 100%;
     max-width: 400px;
     transition: 0.2s ease-in-out;
     overflow: hidden;
}

.Input__Container .LabelNotify {
     display: none;
     opacity: 0;
     font-size: 0.95rem;
     font-weight: 500;
     color: #ff5757;
     transition: opacity 0.3s ease-in-out;
}

.Input__Container .LabelNotify.Active {
     display: flex;
     opacity: 1;
}

.Input__Container .Input {
     width: 100%;
     padding: 10px 15px;
     font-size: 1rem;
     font-weight: 500;
     color: #030712;
     background: #ffffff;
     border: 1px solid #dcdcdd;
     border-radius: 10px;
     outline: none;
     transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.Input__Container .Input:hover {
     border-color: #c0c0c0;
}

.Input__Container .Input:focus {
     border-color: #030712;
}

.Input__Container .Input.Issue {
     border-color: #ff5757;
}

.Input__Container .Input.Issue:hover {
     border-color: #d44848;
}

.Input__Container .Input.Issue:focus {
     border-color: #ff5757;
}

.Input__Container .Input:disabled {
     background-color: #f5f5f5;
     color: #3e4044;
     border-color: #e5e7eb;
     cursor: not-allowed;
}

.Input__Password {
     display: flex;
     align-items: center;
     background: #ffffff;
     padding: 10px 15px;
     border: 1px solid #dcdcdd;
     border-radius: 10px;
     width: 400px;
     transition: 0.2s ease-in-out;
     color: #030712;
     overflow: hidden;
}

.Input__Password:hover {
     border: 1px solid #c0c0c0;
}

.Input__Password:has(input:focus) {
     border: 1px solid #030712;
}

.Input__Password.Issue {
     border: 1px solid #ff5757;
}

.Input__Password.Issue:hover {
     border: 1px solid #d44848;
}

.Input__Password.Issue:has(input:focus) {
     border: 1px solid #ff5757;
}

.Input__Password .Icon {
     flex-shrink: 0;
     margin-right: 0.4rem;
}

.Input__Password .Icon i {
     transition: 0.3s ease;
     cursor: pointer;
}

.Input__Password input {
     margin-right: 0.4rem;
     border: none;
     outline: none;
     flex: 1;
     color: #030712;
     font-size: 1rem;
     font-weight: 400;
     transition: 0.2s ease-in-out;
}

.Input__Password input::placeholder {
     color: #555454;
}

.Input__Password:has(input:disabled) {
     background-color: #f5f5f5;
     color: #3e4044;
     border-color: #e5e7eb;
     cursor: not-allowed;
}

.Input__Telephone {
     display: flex;
     align-items: center;
     background: #ffffff;
     padding: 10px 15px;
     border: 1px solid #dcdcdd;
     border-radius: 10px;
     width: 400px;
     transition: 0.2s ease-in-out;
     color: #030712;
}

.Input__Telephone:hover {
     border: 1px solid #c0c0c0;
}

.Input__Telephone:has(input:focus) {
     border: 1px solid #030712;
}

.Input__Telephone.Issue {
     border: 1px solid #ff5757;
}

.Input__Telephone.Issue:hover {
     border: 1px solid #d44848;
}

.Input__Telephone.Issue:has(input:focus) {
     border: 1px solid #ff5757;
}

.Input__Telephone:has(input:disabled) {
     background-color: #f5f5f5;
     color: #3e4044;
     border-color: #e5e7eb;
     cursor: not-allowed;
}

.Input__Telephone .Flag {
     width: 25px;
     flex-shrink: 0;
     margin-right: 0.4rem;
}

.Input__Telephone .Flag svg {
     border-radius: 2px;
}

.Input__Telephone .Code {
     color: #888888;
     font-size: 1rem;
     flex-shrink: 0;
     user-select: none;
}

.Input__Telephone input {
     margin-left: 0.4rem;
     border: none;
     outline: none;
     flex: 1;
     color: #030712;
     font-size: 1rem;
     font-weight: 400;
     transition: 0.2s ease-in-out;
}

.Input__Telephone input::placeholder {
     color: #555454;
}

.PinInput__Wrap {
     display: flex;
     flex-direction: column;
     gap: 10px;
}

.PinInput__Wrap .PinInput__PinInputs {
     display: flex;
     gap: 10px;
}

.PinInput__Wrap .PinInput__PinInputs .PinInput_Pin {
     width: 56px;
     height: 56px;
     border-radius: 10px;
     border: 1px solid #e5e7eb;
     background-color: #ffffff;
     text-align: center;
     font-size: 20px;
     font-weight: 600;
     outline: none;
     transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.PinInput__Wrap .PinInput__PinInputs .PinInput_Pin:focus {
     box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
     transform: translateY(-2px);
     border-color: #111827;
}

.PinInput__Wrap .PinInput__PinInputs .PinInput_Pin::-ms-reveal,
.PinInput__Wrap .PinInput__PinInputs .PinInput_Pin::-ms-clear {
     display: none;
}

.PinInput__Wrap .PinInput__PinInputs .PinInput_Pin.error {
     animation: shake 0.32s;
     border-color: #ef4444;
}

.Dropdown {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     padding: 10px 40px 10px 15px;
     font-size: 1rem;
     font-weight: 500;
     color: #030712;
     background: #ffffff url('data:image/svg+xml;utf8,<svg fill="%23030712" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M5.516 7.548a.625.625 0 0 1 .884 0L10 11.148l3.6-3.6a.625.625 0 1 1 .884.884l-4.042 4.042a.625.625 0 0 1-.884 0L5.516 8.432a.625.625 0 0 1 0-.884z"/></svg>') no-repeat right 15px center;
     background-size: 16px;
     border: 1px solid #dcdcdd;
     border-radius: 10px;
     outline: none;
     cursor: pointer;
     transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
     width: 100%;
}

.Dropdown:hover {
     border-color: #c0c0c0;
}

.Dropdown:focus {
     border-color: #030712;
}

.Dropdown.Issue {
     border-color: #ff5757;
}

.Dropdown.Issue:hover {
     border-color: #d44848;
}

.Dropdown.Issue:focus {
     border-color: #ff5757;
}

.Dropdown:disabled {
     background-color: #f5f5f5;
     color: #3e4044;
     border-color: #e5e7eb;
     cursor: not-allowed;
}

button {
     appearance: none;
     border: 0.158rem solid #1a1a1a;
     border-radius: 0.75rem;
     color: #fff;
     cursor: pointer;
     display: flex;
     font-size: 1rem;
     font-weight: 600;
     align-items: center;
     outline: none;
     padding: 0.6rem 2rem;
     text-align: center;
     transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
     user-select: none;
     -webkit-user-select: none;
     touch-action: manipulation;
     will-change: transform;
     background-color: #1a1a1a;
}

button:disabled {
     pointer-events: none;
}

button:hover {
     transform: translateY(-2px);
     color: #ffffff;
     background-color: #2b2a2a;
}

button.red:hover {
     transform: translateY(-2px);
     color: #ffffff;
     background-color: #d63636;
     border: 0.158rem solid #d63636;
}

button:active {
     box-shadow: none;
     transform: translateY(0);
}

.sidebar-btn {
     appearance: none;
     border: 0.158rem solid #1a1a1a;
     border-radius: 0.75rem;
     color: #fff;
     cursor: pointer;
     display: flex;
     font-size: 1rem;
     font-weight: 600;
     align-items: center;
     justify-content: flex-start;
     outline: none;
     padding: 0.6rem 1.2rem;
     text-align: left;
     transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
     user-select: none;
     -webkit-user-select: none;
     touch-action: manipulation;
     will-change: transform;
     background-color: #1a1a1a;
     width: 100%;
}

.sidebar-btn:hover {
     background-color: #333;
     transform: translateY(-2px);
}

.sidebar-btn:active {
     transform: translateY(0);
}

/* Tarih inputları */
.date-picker {
     padding: 0.5rem 1rem;
     border-radius: 10px;
     border: 1px solid #dcdcdd;
     outline: none;
     font-size: 1rem;
     transition: border-color 0.2s;
}

.date-picker:focus {
     border-color: #030712;
}

@keyframes shake {
     0% {
          transform: translateX(0);
     }

     25% {
          transform: translateX(-6px);
     }

     50% {
          transform: translateX(6px);
     }

     75% {
          transform: translateX(-4px);
     }

     100% {
          transform: translateX(0);
     }
}

@keyframes ShowHide {
     from {
          display: none;
          opacity: 0;
     }

     to {
          display: flex;
          opacity: 1;
     }
}

@media (max-width: 480px) {

     .Input__Container,
     .Input__Password,
     .Input__Telephone {
          width: 100%;
          max-width: 100%;
     }

     .PinInput__Wrap .PinInput__PinInputs {
          gap: 6px;
          flex-wrap: wrap;
          justify-content: center;
     }

     .PinInput__Wrap .PinInput__PinInputs .PinInput_Pin {
          width: 53px;
          height: 53px;
          font-size: 16px;
     }

     button {
          width: 100%;
          justify-content: center;
          font-size: 0.9rem;
          padding: 0.5rem 1rem;
     }

     .Dropdown {
          font-size: 0.9rem;
          padding: 10px 35px 10px 12px;
          width: 100%;
     }

     .date-picker {
          width: 100%;
          font-size: 0.9rem;
     }
}

@media (min-width: 481px) and (max-width: 767px) {

     .Input__Password,
     .Input__Telephone {
          width: 90%;
          max-width: 350px;
     }

     .PinInput__Wrap .PinInput__PinInputs .PinInput_Pin {
          width: 50px;
          height: 50px;
          font-size: 18px;
     }

     button {
          width: auto;
          min-width: 140px;
     }
}

@media (min-width: 768px) and (max-width: 1023px) {

     .Input__Password,
     .Input__Telephone {
          width: 400px;
     }

     .PinInput__Wrap .PinInput__PinInputs .PinInput_Pin {
          width: 56px;
          height: 56px;
          font-size: 20px;
     }

     button {
          font-size: 1rem;
          padding: 0.6rem 1.8rem;
     }
}

@media (min-width: 1024px) and (max-width: 1279px) {
     .Input__Container {
          max-width: 450px;
     }

     button {
          font-size: 1.05rem;
          padding: 0.7rem 2rem;
     }
}

@media (min-width: 1280px) and (max-width: 1535px) {
     .Input__Container {
          max-width: 500px;
     }

     .PinInput__Wrap .PinInput__PinInputs .PinInput_Pin {
          width: 60px;
          height: 60px;
          font-size: 22px;
     }

     button {
          font-size: 1.1rem;
     }
}

@media (min-width: 1536px) {
     .Input__Container {
          max-width: 600px;
     }

     .PinInput__Wrap .PinInput__PinInputs .PinInput_Pin {
          width: 65px;
          height: 65px;
          font-size: 24px;
     }

     button {
          font-size: 1.2rem;
          padding: 0.8rem 2.2rem;
     }
}