﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #202124;
    line-height: 1.5;
}

.header {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        width: 74px;
        height: 24px;
    }

.account-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .account-section a {
        color: #1a73e8;
        text-decoration: none;
        font-size: 14px;
    }

        .account-section a:hover {
            text-decoration: underline;
        }

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.login-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    text-align: center;
}

h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 48px;
    color: #202124;
}

.login-container h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

.login-container h2 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
}

.form-section {
    margin-bottom: 32px;
}

h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #202124;
}

.required {
    color: #d93025;
}

.email-section {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

    .email-section input[type="checkbox"] {
        margin-right: 8px;
    }

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.radio-option {
    display: flex;
    align-items: center;
}

    .radio-option input[type="radio"] {
        margin-right: 8px;
    }

.text-area {
    margin-bottom: 16px;
}

    .text-area textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid #dadce0;
        border-radius: 4px;
        font-family: inherit;
        font-size: 14px;
        resize: vertical;
        min-height: 100px;
    }

.select_img {
    margin-bottom: 16px;
}

    .select_img input[type="file"] {
        display: none;
    }

    .select_img label {
        display: inline-block;
        background-color: #f1f3f4;
        border: 1px solid #dadce0;
        border-radius: 4px;
        padding: 8px 16px;
        font-size: 14px;
        color: #202124;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .select_img label:hover {
            background-color: #e8eaed;
        }

.file-name {
    margin-top: 8px;
    font-size: 14px;
    color: #5f6368;
}

.text-input {
    margin-bottom: 16px;
}

    .text-input input[type="text"] {
        width: 100%;
        padding: 8px;
        border: 1px solid #dadce0;
        border-radius: 4px;
        font-size: 14px;
    }

.copy-option {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

    .copy-option input[type="checkbox"] {
        margin-right: 8px;
    }

.form-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.submit-button {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .submit-button:hover {
        background-color: #174ea6;
    }

    .submit-button:disabled {
        background-color: #dadce0;
        color: #5f6368;
        cursor: not-allowed;
    }

.clear-button {
    background-color: white;
    color: #5f6368;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .clear-button:hover {
        background-color: #f8f9fa;
    }

.footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 24px;
    font-size: 12px;
    color: #5f6368;
}

.footer-links {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

    .footer-links a {
        color: #5f6368;
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.report-section {
    display: flex;
    align-items: center;
}

    .report-section a {
        color: #1a73e8;
        text-decoration: none;
    }

        .report-section a:hover {
            text-decoration: underline;
        }

.language-selector {
    display: flex;
    align-items: center;
    margin-top: 24px;
    justify-content: center;
}

    .language-selector select {
        padding: 6px 8px;
        border: 1px solid #dadce0;
        border-radius: 4px;
        font-size: 12px;
        background-color: white;
        cursor: pointer;
    }

.login-footer {
    margin-top: 40px;
    font-size: 14px;
    color: #5f6368;
    text-align: center;
}

    .login-footer a {
        color: #1a73e8;
        text-decoration: none;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }

@media (max-width: 600px) {
    .container,
    .login-container {
        padding: 24px;
        margin: 20px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .radio-group {
        flex-direction: column;
        gap: 8px;
    }

    .form-actions {
        flex-direction: column;
    }

        .form-actions button {
            width: 100%;
        }
}
