*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.main{
    background-image: url(./images/bgimage..jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.inner-box{
    width: 90%;
    max-width: 500px;
    min-height: 300px;
    height: 70vh;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #020024 ;
}
.row-1{
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
}
#inp{
   flex: 1;
   max-width: 400px;
   padding: 0.5rem 1rem; 
   display: flex;
   justify-content: center;
   font-size: 1rem;
   margin-bottom: 1rem;
   border: none;
   outline: none;
   height: auto;

}
.copy-btn{
    padding:  0 1rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    height: 70%;
    border-radius: 0 5px 5px 0 ;
   border:none; 
}

.gen{
    padding:0.8rem 1.2rem;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 10px;
    outline: none;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0,0,0,0.3); 
}
.gen:hover{
    box-shadow: 0 8px 15px rgba(0,0,0,0.3); 
    transform: translateY(-3px) scale(1.05);
    color: white;
    background: #020024;
background: linear-gradient(226deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

label{
    color: white;
}
.options{
    margin-bottom: 10px;
}
input:active,input:focus{
    outline: none;
}
.head{
    color: white;
    text-transform: uppercase;
    padding: 1rem 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
 text-shadow: 2px 2px 5px rgba(0,0,0,0.6), 4px 4px 10px rgba(0,0,0,0.3), 0 0 10px rgba(0,212,255,0.5);


}
.head:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}