*{
    font-family: sans-serif;
    background-color: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    align-items: center;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;

}
.header{
    color: #000;
}
.card{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.convert{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 0px solid;
    border-radius: 16px;
    background-image: linear-gradient(120deg, #ffffff4f 0%, #ffffff4f 100%);
    transition: 0.5s;
}
.convert:hover{
    transform: translateY(-10px);
    
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.281);
}
.btn{
    width: auto;
    background: rgb(4,0,66);
    background-image: linear-gradient(to right, #ffffff2b 0%, #ffffff29 100%);
padding: 10px;
border-radius: 8px;
border: 0px;
color: #fff;
font-size: 1rem;
font-weight: 600;
transition: 0.5s;
}

.btn:hover{
    cursor: pointer;
    background-image: linear-gradient(to right, #ffffff00 0%, #ffffff00 100%);
}
input,option,select{
    margin: 10px;
    background: none;
    
    padding: 10px;
    border-radius: 8px;
    border: 0.3px solid;
}
.result{
    background-color: #0000002e;
    padding: 15px;
    border-radius: 8px;
    margin: 10px;
    display: flex;
    flex-direction: row;

}
.input{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.details{
    display: flex;
    flex-direction: row;
}
.checkbox{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px;
    padding: 10px;
}
.copy-btn{
    background: #00000091;
    padding: 5px 7px;
border-radius: 8px;
margin: 0 10px;
border: 0px;
color: #fff;
font-size: 1rem;
font-weight: 600;
transition: 0.5s;
cursor: pointer;

}
