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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins" , sans-serif;
    
}
.body{
    display:flex;
    align-items: center;
    justify-content: center;
    min-height: 88.5vh;
    /* padding: 0 10px; */
    background: linear-gradient(45deg,#0172af,#74febd);
}
::selection{
    color: black;
    background: white;
}
.wrapper{
    width:370px;
    padding: 30px;
    border-radius: 5px;
    background-color: #020323;
    box-shadow: 7px 7px 20px rgba(0,0,0,0.2);
    color: white;
    position: static;
    top: 2px;

}
.wrapper header{
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}
.wrapper form{
    margin:40px 0 20px 0;
}
form :where(input, select, button){
    width: 100%;
    outline: none;
    border-radius: 5px;
    border:none;
    background: #444;
    color: white;
}
form p{
    font-size: 18px;
    margin-bottom: 5px;

}
form input{
    height: 50px;
    font-size: 17px;
    padding: 0 15px;
    border:1px solid #999;
    background: #555;

}
form input:focus{
    padding: 0 14px;
    border:2px solid #74febd;
    background: #555;
}
form .drop-list{
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;

}
.drop-list .select-box{
    display: flex;
    width: 115px;
    height: 45px;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    border: 1px solid #999;
    background: white;
    color: black;
}

.select-box img{
    max-width: 35px;
    width: 50px;
}
.select-box select{
    width: auto;
    font-size: 16px;
    background: none;
    margin: 0 -5px 0 5px;
    color: black;
}
.select-box select::-webkit-scrollbar{
    width:8px; 
}
.select-box select::-webkit-scrollbar-track{
    background: white;
}
.select-box select::-webkit-scrollbar-thumb{
    background: #888;
    border-radius: 8px;
    border-right:2px solid #ffffff ;
}
.drop-list .icon{
    cursor: pointer;
    margin-top: 20px;
    font-size: 22px;
    color: white;
}
form .exchange-rate{
    font-size: 17px;
    margin:20px 0 30px;
}
form button{
    height: 56px;
    color: #121212;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    background: #74febd;
    transition:background 0.3s ease, transform 0.2s ease;
}
form button:hover{
    background: white;
    color: #121212;
    transform:scale(1.01);
}
form button:active{
    transform: scale(0.90);
}
.nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 5rem;
    width: 100%;
    position: sticky;
    top: 0;
    background-color:black;
    color: white;
}
.profile{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.photo{
    background-color: rgba(255,255,255, 0.3);
    height: 3rem;
    padding: 0.5rem 0 0 0.8rem;
    border-radius: 50%;
    width: 3rem;
    font-size: 1.5rem;
    cursor: pointer;
}
.photo:hover{
    transform: scale(0.9);
    transition:transform 1s ease-in-out;
}
.name{
    height: 2rem;
    padding-top: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}
.photo i{
    width: 100%;
}
.buttons{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width:8rem;
    gap:2rem;
    font-size:1rem;
}
.login{
    border: 2px solid gray;
    background-color: var(--purple);
    width: 7rem;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    border-radius:0.5rem;
    cursor: pointer;
}
.login:hover{
    transform: scale(0.9);
    transition:transform 0.2s ease-in-out;
}
.register{
    border: 2px solid gray;
    width: 7rem;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    background-color: rgba(255,255,255, 0.3);
    z-index: 0;
    border-radius:0.5rem;
    cursor: pointer;
}
.register:hover{
    transform: scale(0.9);
    transition:transform 0.2s ease-in-out;
}
.register p{
    z-index: 1;
}
