*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #020d45;
    background: linear-gradient(90deg, #5936b4 0%, #362a84 100%);
    color: #222;
    font-size: 1rem;
}

.temperature-converter{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    width:100% ;
    min-width:320px ;
    padding: 20px 25px 45px;
    height: auto;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 5px 250px 0 rgba(255, 255, 255, 0.02) inset;
    backdrop-filter: blur(21px);
}

.mobile{

    display: flex;
    justify-content: space-between;
    font-size: 18px;
    align-items: center;
    font-weight: 700;
    margin-bottom: 40px;

}

.title{
    color:#222;
    font-size: 1.5rem;
    text-align: center;
}

.result{
    text-align: center;
    margin: 20px 0;
}

.result-heading{
    color: #555;
    font-size: 1rem;
    font-weight: 600;
}

.celsius-value{
    border-bottom:2px solid #ccc ;
    padding: 10px;
    transition: all 0.41s ease;
}

.degree-type{
    display: flex;
    justify-content: space-between;
    
    align-items: center;
    padding: 20px 0;
}

.degree-field{
    display: flex;
    flex-direction: column;
    width: 46%;
}
.temp-field{
    display: flex;
    flex-direction: column;
    width: 46%;
}

label{
    color: #555;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

input  ,select{
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    padding: 8px;
    margin-bottom: 15px;

}

.input:focus , select:focus{
    border: 1px solid #4c49f3;
}

option{
    background: #3c39e7;
    color: #f6f6f6;
}

#convert-btn{
    border: none;
    outline: none;
    border-radius: 5px;
    background: linear-gradient(to bottom,#3633f3 , #120fb9);
    color: #f6f6f6;
    padding: 12px 80px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: all 0.41s ease-in;
    text-transform: uppercase;
    cursor: pointer;
  


}
#convert-btn:hover{
    background: linear-gradient(to bottom,#120fb9 , #3633f3);
    box-shadow: 0 0 15px 0 rgba(54, 51, 243, 0.664);
}

.fa{
    margin-left: -12px;
    margin-right: 8px;

}