/* Reset body */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: white;
}

/* Logo */
.logo img {
    height: 90px;
}

/* Form layout */
.login-form {
    display: flex;
    align-items: center;
}

/* Row container for inputs + button + get started */
.inputs-row {
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

/* Input groups */
.form-group {
    display: flex;
    flex-direction: column;
}

/* Labels */
.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
}

/* Email input */
.form-group input[type="email"] {
    padding: 6px;
    border: none;
    border-bottom: 3px solid #5cb85c;
    outline: none;
    width: 200px;
    box-sizing: border-box;
    margin-bottom: 25px;
}

/* Password input */
.password-group input[type="password"] {
    padding: 6px;
    border: none;
    border-bottom: 3px solid #5cb85c;
    outline: none;
    width: 200px;
    box-sizing: border-box;
    margin-top: 4px;
}

/* Forgot link */
.forgot {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
    text-decoration: underline;
}

/* Login button */
.login-btn {
    padding: 15px 30px;
    border: 2px solid #5cb85c;
    background: white;
    color: #2d7f2d;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 22px;
}

.login-btn:hover {
    background: #5cb85c;
    color: white;
}

/* Get started section */
.get-started {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.get-started span {
    font-size: 12px;
}

.get-started a {
    font-size: 25px;
    text-decoration: underline;
    color: #808080;
}

/* Banner */
.hero img {
    width: 100%;
    display: block;
}