/* Google Font Import + poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-shrink: 1;
    flex-grow: 1; */
    background-color: rgb(182, 195, 207);
}

marquee {
    position: absolute;
    top: 1.5%;
    right: 2%;
    color: rgb(201, 19, 19);
    font-size: small;
}

.input_note_app {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex-wrap: wrap;
    flex-shrink: 1; */
    padding: 5px;
    background-color: rgb(57, 84, 112);
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);

}

button[type="button"] {
    border-radius: 4px;
    padding: 7px 8px 7px 8px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

button[type="button"]:hover {
    background-color: rgb(31, 80, 132);
    color: white;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

h1 {
    color: rgb(233, 223, 223);
}

button[type="reset"] {
    border-radius: 4px;
    padding: 7px 8px 7px 8px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: none;
}

button[type="reset"]:hover {
    background-color: rgb(31, 80, 132);
    color: white;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

#input_area:focus {
    outline: none;
}

#input-error {
    position: absolute;
    bottom: 60px;
    right: 17px;
    font-size: 10px;
    color: red;
}

#input-error i {
    color: green;
    font-size: 14px;
}

#save-error {
    position: absolute;
    top: 90px;
    right: 17px;
    color: red;
    font-size: 10px;
}

.reloader {
    z-index: 2;
    display: none;
}

.reloader img {
    width: 30px;
}

/* media query */
@media screen and (max-width: 1000px) {
    body {
        overflow: hidden;
    }

}

@media screen and (max-width: 700px) {
    .input_note_app {
        width: 90%;
        /* height: 90vh; */
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .input_note_app textarea {
        width: 100%;
        /* height: 50vh; */
        display: flex;
        padding: 5px;
    }

}