* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    --blue1: #203c3b;
    --blue2: #447270;
    --blue3: #6b9493;

    --text:  #203c3b;
    --text1: #4169E1;
}

html, body {
    font-family: Arial;
    line-height: 2em;
    color: var(--text);
    scroll-behavior: smooth;
}

a {
    color: var(--text1);
    text-decoration: none;
}

a:hover {
    color: var(--blue2);
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    cursor: pointer;
    color: #fff;
    background: var(--blue2);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--blue2);
}

button:hover {
    color: var(--blue2);
    background: #fff;
    border: 1px solid var(--blue1);
}

table { 
    margin-top: 20px;
    border-collapse: collapse;
}

td {
    padding: 5px;
    border: 1px solid var(--text);
    text-align: center;
    line-height: 1em;
}

/* fieldset {
    padding: 10px 20px 20px 20px;
    border: 1px solid var(--text);
} */

.hundred input{
    width: 100%;
    margin-bottom: 10px;
}

/* Utility class - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Utility class */

.container {
    height: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.success, .warning {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;

    border: 1px solid;
    margin: 10px;
    padding: 10px;
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    animation: notice 3s linear forwards;
}

@keyframes notice {
	90% { transform: translateY(0px);}
	100% { transform: translateY(-30vh);}
}

.success {
    color: #4F8A10;
    background-color: #DFF2BF;
}

.warning {
    color: #9F6000;
    background-color: #FEEFB3;
}

/* Navbar class - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Navbar class */

#navbar {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(185, 185, 185, 0.3);
    height: 80px;
    z-index: 100;
    transition: top 0.3s;
}

#navbar .navbar-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    color: var(--blue1);
    line-height: 1.6em;

    background: url('soyombo.png');
    background-size: contain; 
    background-repeat: no-repeat;

    padding-left: 45px;
    padding-top: 10px;
    font-weight: bold;
    font-style: italic;
    color:var(--blue2);
}


#login .login-content {
    text-align: center;
}

#login .login-content form {
    width: 30%;
    margin: auto;
}

#login .login-content form input {
    width: 100%;
    display: block;
    margin: 10px 0px;
    padding: 20px;
}

#login .login-content form button {
    width: 100%;
    padding: 20px;
    margin-top: 10px;
}


.border {
    margin-top: 30px;
    padding: 20px 30px;
    border-radius: 5px;
    border: 1px solid var(--blue3);

    line-height: 1.5;
    text-align: justify;
}


.border form b img{
    width: 100%;
}

.con {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.con input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.con:hover input ~ .checkmark {
    background-color: var(--text1);
}

/* When the radio button is checked, add a blue background */
.con input:checked ~ .checkmark {
    background-color: var(--blue2);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.con input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.con .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MOBILE */

@media screen and (max-width: 850px) {

    #navbar {
        padding: 0px 20px;
    }

    #login .login-content {
        padding: 20px;
    }

    #login .login-content form {
        width: 100%;
    }
    .border {
        margin: 40px 20px;
    }

 }