﻿body {
    padding: 0px;
    background-color: #e6e6e6;
    font-family: Arial;
    line-height: 1.4;
}

.logo {
    background-color: #2d2d2d;

}
#home-text {
    display: block;
    width: 90%;
    max-width: 700px;
    padding: 15px;
    font-family: Arial;
    background: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.container {
    min-height: 90vh;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
    padding-top: 15px;
    max-width: 700px;
    margin: auto;
}
.form-container {
    width: 90%;
    max-width: 700px;
    background: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    padding: 15px;
    justify-content: center;
    display: none;
}


input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}
input[type=password] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    padding-bottom: 10px;
}
.delete-button {
    background-color: #e25840;
    width: 60%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    margin-top: 15px;
}
    .delete-button:hover {
        background-color: #b10000;
    }

.submit-button {
    width: 60%;
    background-color: #4abbae;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    margin-top: 15px;
}

    .submit-button:hover {
        background-color: #4CAF51;
    }
.label-text {
    float: left;
    min-width: 175px;
    width: 40%;
    margin-top: 6px;
}

.field {
    float: left;
    width: 60%;
    margin-top: 6px;

}
.user-pass {
    display: none;
}

@media screen and (max-width: 700px) {
    .label-text, .field {
        width: 100%;
        margin-top: 5px;
    }
}
@media screen and (max-width: 700px) {
     input[type=submit] {
        width: 100%;
        margin-top: 20px;
    }
}

.navbar {
    overflow: hidden;
    background: #2d2d2d;
    font-family: Arial;
    width: 90%;
    max-width: 700px;
    padding-left: 15px;
    padding-right: 15px;
}

    .navbar a {
        float: left;
        font-size: 16px;
        color: #f5f5f5;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

.navbar-items {
    vertical-align: bottom;
    padding-top: 45px;
}

.align-top-nav {
    color: #f5f5f5;
    position: relative;
    float: right;
}

.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: #f5f5f5;
        padding: 14px 16px 14px 16px;
        background: #2d2d2d;
        font-family: inherit;
        margin: 0;
        display: inline-block;
    }

    .navbar a:hover, .dropdown:hover .dropbtn {
        color: #89d4e3;
    }


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #89d4e3;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            font-weight: bold;
            color: black;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

#success {
    position: absolute;
    background-color: #89d4e3;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 2px;
    padding-top: 2px;
    min-width: 160px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    border-radius: 20px;
}
ul {
    list-style-type: none;
    font-weight: normal;
}

.dash:before {
    margin-left: -1.1em;
    position: absolute;
    content: "–";
}

.country {
    list-style-type: square;
    font-weight: normal;
}

ol > li {
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: bold;
}
