@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fff;
    padding: 20px;
}

* {
    box-sizing: border-box;
}

/* CSS Form*/

form {
    max-width: 400px;
    width: 100%;
    margin: auto;
    background-color: #eee;
    padding: 20px;
    border-radius: 25px;
    border: 4px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

label {
    display: block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #000;
    margin-bottom: 5px;
    box-sizing: border-box;
    background: rgba(217, 217, 217, 0.50);
}

input[type="submit"] {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    width: 100%;
    background-color: #044C04;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #000;  
    margin-bottom : 10px;
}

input[type=date] {
    padding: 8px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    color: #333;
    border: 2px solid #000;
    border-radius: 8px;
    background-color:rgba(217, 217, 217, 0.50);
    cursor: pointer;
    width: 100%;
    margin-bottom: 5px;
}

input[type=number] {
    padding: 8px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    color: #333;
    border: 2px solid #000;
    border-radius: 8px;
    background-color:rgba(217, 217, 217, 0.50);
    width: 100%;
    margin-bottom: 5px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    padding: 8px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    color: #333;
    border: 2px solid #000;
    border-radius: 8px;
    background-color:rgba(217, 217, 217, 0.50);
    cursor: pointer;
    width: 100%;
    margin-bottom: 5px;
}

/* Style when the select box is open */
select:focus {
    border-color: #000;
    box-shadow: 0 0 3px #000;
}

/* Radio Button */
.container-jkel {
    display: block;
    position: relative;
    padding-left: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container-jkel input {
    position: absolute;
    /* opacity: 0; */
    cursor: pointer;
}

/* Create a custom radio button */
.radio-btn {
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
}

.label-jkel {
    display: flex;
    padding-top: 3px;
    padding-left: 30px;
    font-size: 12px;
    cursor: pointer;
}

/* Logo Puskesmas */
.team-card {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.team-card img {
    height: 180px;
    width: 180px;
    /* border-radius: 50%; */
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    background-color: #044C04;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 0 5px #999;
    transition: 0.3s;
}

.btn:hover {
    background-color: #128612;
    /* opacity: 0.6; */
}

.btn:active {
    background-color: #128612;
    box-shadow: 0 2px #666;
    transform: translateY(4px);
    /* opacity: 0.6; */
}

.btnBack {
    height: 18px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    background-color: #044C04;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 0 5px #999;
    transition: 0.3s;
}

.btnBack:hover {
    background-color: #128612;
    /* opacity: 0.6; */
}

.btnBack:active {
    background-color: #128612;
    box-shadow: 0 2px #666;
    transform: translateY(4px);
    /* opacity: 0.6; */
}

.daftar {
    text-decoration: none;
    color: #000;
    padding: 5px;
    font-weight: 600;
}
.daftar:hover {
    color: #128612;
}

@media (max-width: 768px) {
    body {
        padding: 12px;
    }

    form {
        padding: 14px;
        border-radius: 16px;
    }

    label {
        font-size: 15px;
    }

    input[type="text"],
    input[type="password"],
    input[type="submit"],
    input[type=date],
    input[type=number],
    select {
        font-size: 14px;
    }

    .team-card img {
        width: 120px;
        height: 120px;
    }

    .btn,
    .btnBack {
        width: 100%;
        text-align: center;
    }
}