/* static/css/styles.css */

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #fff; /* Google uses a white background */
    font-family: Arial, sans-serif;
}

.logo {
    margin-bottom: 40px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

textarea {
    width: 400px;
    max-width: 80%;
    height: 60px;
    padding: 10px 15px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.2s, border 0.2s;
}

textarea:focus {
    box-shadow: 0 1px 6px rgba(32,33,36,0.28);
    border-color: #4d90fe;
}

.button-container {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #c6c6c6;
    border: 1px solid #c6c6c6;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 14px;
    color: #3c4043;
    cursor: pointer;
    transition: background-color 0.3s, border 0.3s;
}

.btn:hover {
    border: 1px solid #f6c6c6;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.footer {
    bottom: 20px;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
}
