@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --main-color: #c3fa2d;
  --border-main-color: #3f441b;
  --black-color: #000000;
  --gray-color: #868c8f;
  --gray-2-color: #545454;
  --secondary-color: #171717;
  --secondary-two-color: #262626;
  --secondary-three-color: #383838;
  --border-color: #141414;
  --border-purple-color: #ad95a8;
  --border-highlight-color: #594726;
  --danger-color: #873132;
  --white-color: #ffffff;
  --highlight-color: #402703;
  --purple-color: #46354a;
  --purple-two-color: #5c2463;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
caption,
canvas,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
form,
footer,
header,
hgroup,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
tt,
table,
tbody,
textarea,
tfoot,
thead,
time,
tr,
th,
td,
u,
ul,
var,
video {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* custom style */

.text-gradient {
  background: linear-gradient(#fff, #fcd835);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: "text";
  color: transparent;
}

input {
  outline: none !important; /* hilangkan garis biru default */
  box-shadow: none !important; /* hilangkan shadow jika ada */
  border: 0 !important;
}

input::placeholder {
  color: #c1c3d6 !important ; /* ganti dengan warna yang diinginkan */
  opacity: 1; /* supaya terlihat jelas, default 0.5 di beberapa browser */
}

input:focus,
input:focus-visible {
  outline: none !important; /* hilangkan garis biru default */
  box-shadow: none !important; /* hilangkan shadow jika ada */
  border: 0 !important;
}
/* end custom style */
