/* --- Base Styles --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif; /* Fallback fonts */
    background-color: #f0f3f6; /* Subtle background color from image */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* --- Container and Card --- */
.main-container {
    padding: 20px;
}

.signin-card {
    background-color: #ffffff;
    width: 800px; /* Adjust width as needed */
    max-width: 90%;
    padding: 60px 50px 40px; /* Specific padding from layout */
    border-radius: 30px; /* Distinct rounded corners */
    display: flex; /* Creates the two-column layout */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Soft shadow */
}

/* --- Left Section Styles --- */
.left-section {
    flex: 1; /* Takes up half the space */
    padding-right: 40px; /* Space between columns */
}

.google-logo {
    width: 100px; /* Adjust size based on your SVG */
    margin-bottom: 25px;
}

.left-section h1 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #202124;
}

.left-section p {
    font-size: 16px;
    margin: 0;
    color: #202124;
}

/* --- Right Section Styles --- */
.right-section {
    flex: 1; /* Takes up half the space */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
}

/* Input Field */
.input-group {
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 18px 15px; /* Large padding for the input */
    font-size: 16px;
    border: 1px solid #747775;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    color: #202124;
}

.input-group input::placeholder {
    color: #747775;
    opacity: 0.8;
}

.input-group input:focus {
    outline: 2px solid #0b57d0;
}

/* Links */
.link {
    color: #0b57d0;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

.forgot-email {
    align-self: flex-start; /* Align link to the left within the column */
    font-size: 14px;
    margin-bottom: 50px;
}

/* Guest Mode Info */
.guest-info {
    font-size: 14px;
    line-height: 1.6;
    color: #202124;
    margin: 0 0 50px 0;
}

.guest-info .link {
    font-size: 14px;
}

/* Action Buttons Container */
.action-buttons {
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */
    align-items: center;
    gap: 20px;
}

.create-account {
    font-size: 14px;
}

.next-button {
    background-color: #0b57d0;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 20px; /* Pills shape */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.next-button:hover {
    background-color: #0645a8;
}