* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

:root {
    --active: #8eed8e;
    --active1: #008000;
    --hover: #016501;
    /* textcolor */
    --primary-text-color: rgb(29, 29, 29);
    --secondary-text-color: rgb(73, 73, 73);
}

.errors {
    color: rgb(202, 3, 3);
    list-style: none;
}

.error {
    background: rgb(251, 207, 207);
    margin: 0.5rem 1rem;
    padding: 5px;
    border-radius: 0.3rem;
    display: flex;
    justify-content: space-between;
    color: red;
    font-weight: 400;
}

.error a {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    background: rgb(227, 80, 80);
    color: black;
    border-radius: 5px;
    padding: 5px;
}

.succes {
    background: rgb(155, 233, 155);
    margin: 0.5rem 1rem;
    padding: 5px;
    border-radius: 0.3rem;
    display: flex;
    justify-content: space-between;
}

.succes a {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    background: rgb(131, 225, 131);
    color: rgb(73, 73, 73);
    padding: 5px;
}

/* loader */

.page-loader-container {
    background: rgba(52, 52, 52, 0.292);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100000001;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.page-loader-container div {
    background: #ccc;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.page-loader-container>:nth-child(1) {
    animation: loader1 1s 1.5s ease infinite;
}

@keyframes loader1 {
    0%{margin-bottom: 10px;}
    10%{margin-bottom: 10px;}
    20%{margin-bottom: 10px; background: var(--active);}
    30%{margin-bottom: 5px;}
    40%{margin-bottom: 0px;}
    50%{margin-bottom: -5;}
    60%{margin-bottom: -10px;}
    70%{margin-bottom: -5px;}
    80%{margin-bottom: 0px; background: var(--active1);}
    90%{margin-bottom: 5px;}
    100%{margin-bottom: 10px;}
}

.page-loader-container>:nth-child(2) {
    animation: loader2 1s 1.5s infinite;
    margin-bottom: -20px;
}

@keyframes loader2 {
    0%{margin-bottom: -10px; background-color: var(--active1);}
    10%{margin-bottom: -5px;}
    20%{margin-bottom: 0;}
    30%{margin-bottom: 5px;}
    40%{margin-bottom: 10;}
    50%{margin-bottom: 5px; background: var(--active);}
    60%{margin-bottom: 0px;}
    70%{margin-bottom: -5px;}
    80%{margin-bottom: -10px;}
    90%{margin-bottom: -10px;}
    100%{margin-bottom: -10px; background: var(--active1);}
}

.page-loader-container>:nth-child(3) {
    animation: loader3 1s 1.5s infinite;
    margin-bottom: 20px;
}

@keyframes loader3 {
    0%{margin-bottom: 10px; background: var(--active1);}
    10%{margin-bottom: 5px;}
    20%{margin-bottom: 0;}
    30%{margin-bottom: -5px;}
    40%{margin-bottom: -10;}
    50%{margin-bottom: -5px; background-color: var(--active1);}
    60%{margin-bottom: 0px;}
    70%{margin-bottom: 5px;}
    80%{margin-bottom: 10px;}
    90%{margin-bottom: 10px;}
    100%{margin-bottom: 10px; background-color: var(--active);}
}