/* modal */
.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    padding: 16px;
    background-color: #fefefe;
    margin: 5% auto 15%;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

.close-modal {
    text-align: center;
    margin: 24px 0 18px;
    position: relative;
}

.close {
    position: absolute;
    bottom: 10px;
    right: 0;
    cursor: pointer;
}
input, label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
  }

input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.loginbtn, .closebtn {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
    from { -webkit-transform: scale(0); } 
    to { -webkit-transform: scale(1); }
}

@keyframes animatezoom {
    from { transform: scale(0); } 
    to { transform: scale(1); }
}
