
.crypto-layout{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:22px;
align-items:start;
}

.crypto-layout label{
display:grid;
gap:10px;
}

.crypto-layout textarea,
.crypto-layout input,
.crypto-layout select{
width:100%;
background:rgba(8,16,34,.82);
border:1px solid rgba(120,150,190,.35);
border-radius:14px;
color:#fff;
padding:16px;
outline:none;
box-sizing:border-box;
}

.crypto-layout textarea{
min-height:260px;
resize:vertical;
}

.crypto-layout input,
.crypto-layout select{
height:52px;
}

.crypto-layout textarea:focus,
.crypto-layout input:focus,
.crypto-layout select:focus{
border-color:#58a6ff;
box-shadow:0 0 0 2px rgba(88,166,255,.18);
}

@media(max-width:760px){
.crypto-layout{
grid-template-columns:1fr;
}
}
