* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: white; /* Set the background to white */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 40px;
}

.container {
    width: 450px; /* Slightly reduce width */
    padding: 40px; /* Maintain padding for spacious feel */
    background-color: white; /* Form background stays white */
    border: 1px solid #d3d3d3; /* Light gray border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Soft shadow for better visuals */
    text-align: center;
}

.logo h1 {
    color: #00b3e6;
    font-size: 36px;
    margin-bottom: 40px; /* Increase space between "kaggle" and "Sign In" */
}

.sign-in-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Add space between form elements */
}

label {
    font-size: 14px;
    text-align: left;
}

input[type="text"],
input[type="password"] {
    padding: 12px; /* More padding for better spacing */
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px; /* Increase font size */
}

.password-container {
    position: relative;
}

input[type="password"] {
    width: 100%;
    padding-right: 40px; /* Extra padding to avoid overlap with icon */
}

.show-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #0073e6;
}

.forgot-links {
    font-size: 12px;
    margin-bottom: 20px;
}

.forgot-links a {
    text-decoration: none;
    color: #0073e6;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.sign-in-btn {
    background-color: #333;
    color: white;
    padding: 12px 24px; /* Adjust padding for larger button */
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.sign-in-btn:hover {
    background-color: #000;
}

.quirk-btn {
    background-color: #333;
    color: white;
    padding: 12px 24px; /* Adjust padding for larger button */
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.quirk-btn:hover {
    background-color: #000;
}

.support {
    margin-top: 20px; /* Add space between form and support link */
}

.support a {
    font-size: 12px;
    color: #0073e6;
    text-decoration: none;
}

.support a:hover {
    text-decoration: underline;
}
