@import url("https://fontservice.olcdns.com/metropolis/stylesheet.css");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Metropolis', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    background-image: url("https://edge.live.net.co/images/live/branding/cutheader.jpg");
    background-position: center;
    background-size: cover;
    padding: 20px;
    text-align: left;
}

.logo {
    height: 30px;
}

main {
    display: flex;
    padding: 40px;
    gap: 40px;
}

.signup-section, .signin-section {
    flex: 1;
}

h2 {
    color: #2b5797;
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 20px;
}

.services {
    margin-bottom: 30px;
}

.service {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-info h3 {
    color: #2b5797;
    font-size: 16px;
    margin-bottom: 5px;
}

.service-info p {
    font-size: 14px;
    color: #666;
}

.signup-prompt {
    margin-top: 20px;
}

.signup-button {
    display: inline-block;
    background: #7dd3f6;
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 3px;
}

.services-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.forgot-password {
    display: block;
    font-size: 12px;
    color: #2b5797;
    text-decoration: none;
    margin-top: 5px;
}

.form-options {
    margin: 20px 0;
}

.checkbox {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.signin-button {
    background: #2b5797;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.additional-options {
    margin-top: 20px;
    font-size: 14px;
}

.additional-options a {
    color: #2b5797;
    text-decoration: none;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
}

footer a {
    color: #2b5797;
    text-decoration: none;
    margin: 0 10px;
}

footer span {
    color: #666;
}