* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1f16;
    color: #f5f5f5;
}

header,
section,
footer {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

h1,
h2 {
    color: #e0e0e0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group .input-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.form-group .input-wrapper .input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    /* prevents icon from blocking input clicks */
    font-size: 16px;
    /* adjust size as needed */
    color: #888;
}

.hidden {
    display: none;
}

#overview {
    display: flex
}

#overview .avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 20px;

    border: 3px solid #4caf50;
}

#overview .info * {
    margin-bottom: 0;
    margin-top: 0;
}

#profile {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
}

#profile aside {
    /* background-color: red; */
    background-color: #2e7d32;
    width: 20%;
    padding: 0 0 0 5px;
}

#profile aside ul {
    /* background-color: #fff; */
    list-style-type: none;
    padding-left: 0;
    width: 100%;
}

#profile aside ul li {
    /* margin-bottom: 10px; */
    /* background-color: blue; */
}

#profile aside ul li a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}

#profile aside ul li a:hover {
    background-color: #0f1f16;
    color: #fff;
}

#profile aside ul li a.active {
    background-color: #0f1f16;
}

#profile main {
    padding: 0 10px;
}

.form-group .input-wrapper input {
    padding: 10px;
    padding-left: 35px;
    /* enough space for icon */
    /* height: 36px; */
    /* font-size: 16px; */
    /* border: 1px solid #ccc; */
    /* border-radius: 6px; */
    width: 100%;
    border: 1px solid #4caf50;
    border-radius: 5px;
    background-color: #1b2a1f;
    color: #e0e0e0;
}

a {
    color: #1a8dff;
}

.btn {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;

    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #45a049;
}

.btn:disabled {
    background-color: #9e9e9e;
    cursor: not-allowed;
}

.btn.btn-primary {
    background-color: #2e7d32;
}

.btn.btn-primary:hover {
    background-color: #0f1f16;
}

.btn.btn-secondary {
    background-color: #f44336;
}

.btn.btn-secondary:hover {
    background-color: #4b0404;
}

.btn.btn-success {
    background-color: #2e7d32;
}

.btn.btn-success:hover {
    background-color: #388e3c;
}

.btn.btn-info {
    background-color: #2196F3;
}

.btn.btn-info:hover {
    background-color: #1976D2;
}

.btn.btn-warning {
    background-color: #ff9800;
}

.btn.btn-warning:hover {
    background-color: #f57c00;
}

.btn.btn-danger {
    background-color: #f44336;
}

.btn.btn-danger:hover {
    background-color: #4b0404;
}

a.button {
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 12px 24px;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.tagline {
    font-size: 1.2em;
    color: #bdbdbd;
    margin-bottom: 30px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul.dotted li::before {
    content: "• ";
    color: #4caf50;
}

footer {
    text-align: center;
    font-size: 0.9em;
    color: #9e9e9e;
}

@media (max-width: 600px) {

    header,
    section,
    footer {
        padding: 30px 15px;
    }
}