.card{

    background:white;

    border:1px solid var(--border);

    border-radius:16px;

    box-shadow:var(--shadow);

    padding:24px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 24px;

    border:none;

    border-radius:12px;

    background:var(--primary);

    color:white;

    cursor:pointer;

    transition:.15s;

}

.btn:hover{

    background:var(--primary-hover);

}

input,
select,
textarea{

    width:100%;

    height:48px;

    padding:12px;

    border:1px solid var(--border);

    border-radius:10px;

    background:white;

    outline:none;

}

input:focus,
select:focus,
textarea:focus{

    border-color:var(--primary);

}