@import url(https://fonts.googleapis.com/css?family=Archivo+Narrow:400,700);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: "Archivo Narrow", Verdana, Arial, sans-serif;
    background: #fff;
}

#wrapper {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    padding-top: 15vh;
}

#login_container {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, #9bc140 0%, #7ba335 100%);
    padding: 40px 35px;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Logo Area */
#logo-area {
    text-align: center;
    margin-bottom: 30px;
}

#logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 12px;
}

#logo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Input Groups */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
}

.input-group input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    font-size: 15px;
    font-family: "Archivo Narrow", Verdana, Arial, sans-serif;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 2px;
    color: #333;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: #999;
}

.input-group input:focus {
    outline: none;
    border-color: #444649;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(68, 70, 73, 0.2);
}

.input-group input:focus + i,
.input-group:focus-within i {
    color: #444649;
}

/* Submit Button */
.login_form button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: #444649;
    color: #fff;
    font-family: "Archivo Narrow", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login_form button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.login_form button:active {
    transform: translateY(0);
}

.login_form button i {
    font-size: 18px;
}