@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

body{
    line-height: 1.5;
}
a{
    cursor: pointer;
}
strong{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600 !important;
}
.pinAppleField input{
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: all .3s ease;
    color: transparent !important;
    text-shadow: 0 0 0 #000;
}
.pinAppleField input:focus{
    border-color: #059e94 !important;
    box-shadow: 0 0 5px #059e94;
}
.pinAppleField input::selection {
    background: transparent;
}
.spin{
  animation: rotate 1.5s linear infinite;
}
@keyframes rotate{
  to{ transform: rotate(360deg); }
}
