@import url(https://unpkg.com/@webpixels/css@1.1.5/dist/index.css);

/* Bootstrap Icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.4.0/font/bootstrap-icons.min.css");


:root {
    --white: #fff;
    --lightGray: #f5f3f4;
    --red: #ba181b;
    --darkGray: #0b090a;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}
a {
    text-decoration: none;
}

#cms{
    display: grid;
    height: 100vh;
    grid-template-columns: 0.25fr 1.75fr;
    grid-template-areas: "nav-cms content-cms";
}
#nav-cms{
    grid-area: nav-cms;
    background-color: var(--lightGray);
    color: var(--lightGray);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
#content-cms{
    grid-area: content-cms;
}
 #logo h1{
    font-size: 3rem;
    color: var(--red);
}

#logo h3{
    font-size:2.4rem;
    color: var(--darkGray);
}

#logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#cms-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#cms-links a{
    background-color: white;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    font-size: 1.4rem;
    color: var(--darkGray);
}

#content-cms h1 {
    font-size: 2rem;
    margin: 20px;
    color: var(--red);
}
#content-cms{
    margin: 30px 0px;
}

.wrapper{
    margin-top: 20px;
}
.wrapper h1{
    text-align: center;
}
.wrapper form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 70%;
    margin: 0 auto;
}
.wrapper form input[type="file"]{
    display: none;
}
#imglabel{
    padding: 20px;
    font-size: 2rem;
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: var(--red);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;  
}
.wrapper form input{
    padding: 20px;
    font-size: 2rem;
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: var(--lightGray);
}
.wrapper form button{
    padding: 20px;
    font-size: 2rem;
    outline: none;
    border: none;
    border-radius: 10px;
    color: var(--lightGray);
    background-color: var(--darkGray);

}
.wrapper form label{
    font-size: 2.5rem;
}


.wrapper  select{
    padding: 20px;
    background-color: var(--lightGray);
    border: none;
    outline: none;
    font-size: 2rem;
    border-radius: 10px;
    font-weight: 600;
}

.wrapper select option{
    font-size: 1.8rem;
    background-color: var(--white);
}
#myselect option.hovered {
    background-color: rgb(120, 120, 77);
  }
  

select{
    color: var(--darkGray);
    font-weight: 600;
}


/* ! Error  */
.error{
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--red);
    padding: 10px;
    border-radius: 10px;
}
/* ! Error  */


#viewImg{
    width: 60px;
    height: 60px;
    border-radius: 40%;
    object-fit: cover;
    object-position: center;
}

.create_error{
    text-align: center;
    color: var(--red);
    margin-top: 20px;
    border: 1px solid var(--darkGray);
    width: 200px;
    border-radius: 10px;
    font-size: 1.4rem;
    background-color: var(--lightGray);
    margin: 10px auto;
}