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

html {
    font-size: 10px;
    font-family: 'Comfortaa', sans-serif;
}

body {
    background-color: #ebebf1;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.25rem;
    color: #515151;
}

.alert {
    position: relative;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
    font-size: 1.6rem;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.container {
    position: relative;
    top: 0;
    left: 0;
    padding: 2rem;
}

.logo_form {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-top: 45px;
    border-radius: 50%;
    border: 0px solid #ccc;
    overflow: hidden;
    box-shadow: 0 -13px 15px 0px rgba(0, 0, 0, 0.045);
    z-index: 100;
}

.logo_form img {
    position: relative;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.content,
.incident_form {
    position: relative;
    top: 85px;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border: 0px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.045);
    margin-bottom: 11rem;
}

.incident_form {
    max-width: 650px;
}

@media(max-width: 540px) {
    .content,
    .incident_form {
        padding: 25px;
    }
}

.incident_login_form {
    margin-top: 1rem;
}

input,
select,
textarea {
    font-size: 1.5rem;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
    transition: 0.3s;
}
input:hover {
    background-color: #f8f8f9;
}
input:read-only {
    background-color: #e9ecef;
}
textarea {
    min-height: 100px;
    resize: vertical;
}
label {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    color: #515151;
}

.btn {
    text-decoration: none;
    display: inline-block;
    font-size: 1.5rem;
    padding: 10px 15px;
    border: 1px solid gray;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-primary {
    background-color: #2355a3;
    border-color: #2355a3;
    color: #fff;
}

.btn-success {
    background-color: #068f18;
    border-color: #068f18;
    color: #fff;
}

.btn-warning {
    background-color: #b88f08;
    border-color: #b88f08;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2c7be5;
    border-color: #2c7be5;
}

.btn-success:hover,
.btn-success:focus {
    background-color: #1daf30;
    border-color: #1daf30;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #d4a60c;
    border-color: #d4a60c;
}


.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Bashboard (buttons) */
.incident_dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media(max-width: 540px) {
    .incident_dashboard {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}
.incident_dashboard form,
.incident_dashboard form button {
    width: 100%;
}
.incident_dashboard form button img {
    width: 75px;
}

.forgot_password {
    display: inline-block;
    text-decoration: none;
    color: #515151;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: 0.3s;
}
.forgot_password:hover {
    color: #333;
    text-decoration: underline;
}

.personal-id-input,
.pin-input {
    width: 18.5%;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 1.25rem;
    box-sizing: border-box;
}

.personal-id-input:focus,
.pin-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.justify-between {
    justify-content: space-between;
}

.personal_id_group, .pin_group {
    gap: 5px;
}

.login_form_employee {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 340px;
    padding: 30px 20px 35px 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
}
@media(max-width: 380px) {
    .login_form_employee {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .central_position {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 20px;
    }
}

    h4 {
        font-size: 15px;
        color: #333;
    }
    .mt-2 {
        margin-top: 20px;
    }
    .mt-3 {
        margin-top: 30px;
    }
    .mt-4 {
        margin-top: 40px;
    }
    table tr td {
        font-size: 15px;border-bottom: 1px solid #ccc;
        padding: 10px;
    }

h1 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
}