body{
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-areas: 
    "header right"
    "left right";
    margin: 0;
    height: 100vh;
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.brand-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

header{
    grid-area: header;
    padding: 2.125rem 1.5rem;
    display: flex;
    flex-direction: row;
}

h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
}
.main{
    grid-area: left;
    justify-content: center;
    /* background-color: aquamarine; */
    display: flex;
    height: 100%;
}

.section-login{
    padding: 2rem;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    max-width: 30rem;
    /* background-color: bisque; */
}

.head-login{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.head-login h2{
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
}

.head-login p{
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
}

.login-google{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-google a{
    gap: 12px;
    width: 100%;
    border: 0.3rem solid rgb(219, 224, 235);
    padding: 0.625rem 0rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
}

.login-google a:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.login-google span{
    display: inline-flex;
    gap:0.25rem;
    align-items: center;
}

 .features {
    margin-top: 0rem;
    text-align: left;
    padding: 2rem;
    padding-top: 0rem;
    padding-bottom: 0rem;
    border-radius: 12px;
}

.features h3 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.feature-item::before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}
/* .form-login{
    font-weight: 500;
    font-size: 1rem;
    margin: 0px 0px 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-login input{
    padding: 0.5625rem 0.75rem;
    width: 95%;
    font-weight: 400;
    font-size: 1rem;
    margin: 0px 0px 0.5rem;
    border: 0.0625rem solid rgb(219, 224, 235);
}

.form-login a{
    font-weight: 400;
    font-size: 1rem;
    margin-top: 0.5rem;
    float: right;
}

.form-login button{
    width: 100%;
    font-size: 1rem;
    margin-top: 2rem;
    padding: 0.625rem 1rem;
    border-radius: 0.25rem;
    background: rgb(42, 91, 215);
    color: white;
} */

.side-panel{
    grid-area: right;
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        grid-template-columns: 1fr;
        grid-template-areas: 
        "header"
        "left";
    }
    
    .side-panel {
        display: none;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .brand-title {
        font-size: 24px;
    }
    
    .brand-subtitle {
        font-size: 11px;
    }
    
    header {
        padding: 1.5rem 1rem;
    }
    
    .section-login {
        padding: 1rem;
    }
}