/* assets/css/style.css */
body {
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333333;
}

.container {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #ffffff;
}

input:focus {
    outline: none;
    border-color: #000000;
}

button {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #333333;
}

.toggle-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666666;
}

.toggle-text span {
    color: #000000;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}

.hidden {
    display: none;
}

.message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #d9534f;
}
