@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
@media screen and (min-width:501px){
    .login-div {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background: #4070f4; */
        background: coral;
        padding: 16px;
    }
}
:where(.login-container,header) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-container {
    background: #fff;
    padding: 30px 65px;
    border-radius: 12px;
    row-gap: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.login-container header {
    height: 65px;
    width: 65px;
    background: coral;
    color: #fff;
    font-size: 2.5rem;
    border-radius: 50%;
}
.login-container h4 {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
}
form .input-field {
    flex-direction: row;
    column-gap: 10px;
}
.input-field .login-input {
    height: 45px;
    width: 47px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
}
.input-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.input-field input::-webkit-inner-spin-button,
.input-field input::-webkit-outer-spin-button {
    display: none;
}
form .login-button {
    margin-top: 25px;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 9px 0;
    cursor: pointer;
    border-radius: 6px;
    pointer-events: none;
    background: coral;
    transition: all 0.2s ease;
}
form .login-button.active {
background: coral;
pointer-events: auto;
}
form .login-button:hover {
background: coral;
}


@media screen and (max-width:500px){
    .login-div {
        min-height: 100vh;
        background: coral;
        /* background: #4070f4; */
        padding: 16px;
    }
    .input-field .login-input {
        width: 34px;
    }
    .atten-time-width{
        width: 120px !important;
    }
}

.nav-icon{
font-size: 29px;
  margin-bottom: 8px;
  color: coral;
}

.form-control:focus{
    box-shadow: none;
}

.link{
    text-decoration: none;
}


.user-image{
    border-radius: 50%;
    width: 60px;
    height:60px;
    border:1px solid #f3f3f3;
}


/* attendance view page css */

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 20px;
}
.day {
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.marked {
    background-color: #0d6efd;
    color: white;
}
.calendar-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-bottom: 2px solid #ddd;
}
.day-header {
    font-weight: bold;
}
@media screen and (max-width: 520px){
    .calendar-header{
        padding: 2px;
    }

    .day{
        padding: 2px;
    }
}

