/* CSS reset */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%; 
}

body {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  background-color: #ebf7ff;
  color: #101828;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

html:focus-within {
  scroll-behavior: smooth;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Custom styles */

.logo {
  width: 166px;
  height: 40px;   
  margin: 0 auto;
  margin-top: 25vh;
}

.logo img {
  width: 100%;           
  height: 100%;           
  object-fit: contain;  
}

.text-area {
  text-align: center;
  width: 620px;
  height: 385px;
  background-color: #ffffff;
  margin: 0 auto;
  margin-top: 68px;
  padding-top: 56px;
  border-radius: 16px;
  box-shadow: 0px 10px 47px -4px #0EA5E926;
  box-shadow: 0px 4px 4px -4px #0C4A6E0D;
}

h1 {
  color: #0c4a6e;
  font-size: 32px;
  font-weight: 600;
}

p {
  color: #475467;
  font-size: 14px;
  font-weight: 400;
}

a {
  color: #ea580c;
  text-decoration: underline;
  cursor: pointer;
}

div p:last-child {
  margin-top: 48px;
}

.preloader {
  display: block;
  margin: 26px auto;
  width: 45px;
  height: 45px;
  margin-top: 26px;
  margin-bottom: ;
}

.text-status {
  color: #101828;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ID for hiding rows and the text block */

#redirect-fail {
  display: none;
}

#redirect-ok {
  
}

#redirect-fail  .text-status {
  color: #d63030;
}

#failed {
  color: #d63030;
}

#redirect-ok {
  
}

#searching-url {
 
}

#received-url {
  display: none;
}

#preloader {

}

#warning-icon {

}

#warning-text {

}

/* CSS for the mobile version of the page */

@media (max-width: 375px) {
  
  .logo {
    margin-top: 151px;
  }

  .text-area {
    width: 343px;
    height: 405px;
    padding: 20px;
  }

  h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .text-status {
  color: #101828;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

}
















