@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;700&family=Poppins:ital,wght@0,100;0,300;0,400;1,200;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Poppins', sans-serif;
}


body {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(250, 250, 250);
    height: 52%;
    width: 45%;
    border-radius: 20px;
    
    padding: 5px;
    filter: drop-shadow(6px 4px rgba(18, 18, 18, 0.132));
}
@media screen and (max-width: 368px) {
    .wrapper {
        width: 95%;
        /* Adjust for larger screens */
    }


}
.heading {
    color: #151515;
    font-size: 35px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    display: flex;
    text-transform: capitalize;
}

.quote {
    font-size: 25px;
    max-width: 90%;
}

button {
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    transition: all 0.5s;
    cursor: pointer;
}

.line {
    width: 100px;
    height: 3px;
    background: #000;
}
button:active {
    transform: scale(1.2);
}

.back1 {  
  position: fixed;
  width: 100%;
  height: 100%;
  background: #9e0142;
  animation: color 15s infinite linear;
  text-align: center;
  z-index: -1;
  color: black;
}

@keyframes color {
  0%   { background: #9e0142; }
  10%  { background: #d53e4f; }
  20%  { background: #f46d43; }
  30%  { background: #e38c36; }
  40%  { background: #ecb622; }
  50%  { background: #5ac60d; }
  60%  { background: #17a504; }
  70%  { background: #66c2a5; }
  80%  { background: #3288bd; }
  90%  { background: #5e4fa2; }
  100% { background: #36c452; }
}

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color:whitesmoke;
    background: #007bff;;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 1rem;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 0.5rem;
}

.glow-on-hover:active {
    color:whitesmoke;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:#007bff;;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* /loader/ */

.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}