*, *::after, *::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@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');


:root {
    --primary-color: #47B5FF;
    --primary-color-hover: #6bc3fe;
    --secondary-color-hover: #e7f6ff;
    --secondary-color: #4779FF;
    --black-color: #121212;
    --input-color: #F3F3F3;
}




body{
    font-family: 'Poppins', sans-serif;
}

::selection {
    color: var(--black-color);
    background: var(--secondary-color-hover);
}





/* Button Components */ 

.g-btn {
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.1s linear;
}

/* Primary Button */

.g-btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.g-btn-primary:hover {
    background: var(--primary-color-hover);
}

/* Secondary Button */

.g-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(71, 181, 255, 0.5);
    color: var(--primary-color);
}

.g-btn-secondary:hover{
    background: var(--secondary-color-hover);
}

/* Tertiary Button */

.g-btn-tertiary {
    background-color: transparent;
    color: var(--primary-color);
}

.g-btn-tertiary:hover{
    background: var(--secondary-color-hover);
}





/* This is Input Component */

.g-form-control {
    position: relative;
}

.g-form-control input {
    width: 287px;
    height: 53px;
    display: block;
    border-radius: 5px;
    border: none;
    background-color: var(--input-color);
    padding: 16px;
    font-size: 16px;
}

.g-form-control input:focus {
    outline: none;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px 0 rgba(71, 181, 255, 0.3);
    background-color: white;
}

.g-form-control input::placeholder {
    font-size: 14px;
    color: #868686;
    opacity: 0.5;
    font-weight: 500;
}

.g-form-control label {
    display: block;
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.g-form-control small{
    color: red;
    visibility: hidden;
}

.g-form-control.g-error input{
    border: 2px solid red;
}

.g-form-control.g-success input{
    border: 2px solid rgb(1, 171, 1);
}

.g-form-control i {
    position: absolute;
    right: 10px;
    top: 48px;
    visibility: hidden;
}

.g-form-control.g-success i.fa-circle-check {
    color: rgb(1, 171, 1);
    visibility: visible;
}

.g-form-control.g-error i.fa-circle-exclamation {
    color: red;
    visibility: visible;
}

.g-form-control.g-error small {
    color: red;
    visibility: visible;
}





/* This is Checkbox component */

input[type="checkbox"]{
    appearance: none;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 2px solid #C2C2C2;
    border-radius: 5px;
    position: relative;
    margin-right: 8px;
}

input[type="checkbox"]::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 2.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

input[type="checkbox"]:checked::after{
    display: block;
}



















