body {
    display: flex;
    flex-direction: column;
    background-color: #f9fafb;
    font-family: "Roboto", sans-serif;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.card {
    max-width: 24rem;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    color: #3b82f6;
}

.platform-name {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: #333333;
}

.card-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: #333333;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.form-label {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    font-size: 1rem;
    margin-bottom: 1rem;
}


.forgot-password {
    margin-top: -0.5rem;
    font-size: 0.875rem;
    margin-right: -1.5rem;
    color: #4b5563;
    text-align: right;
    font-weight: 500;
}

.forgot-password-link {
    color: #646464;
    font-weight: 500;
    text-decoration: none;
}

.forgot-password-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.login-button {
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0.625rem;
    border-radius: 0.25rem;
    background-color: #3b82f6;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
}

.login-button:hover {
    background-color: #2563eb;
}

.create-account {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
}

.create-account-link {
    color: #646464;
    font-weight: 500;
    text-decoration: none;
}

.create-account-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

#documentation-link {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.documentation-button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.documentation-button:hover {
    background-color: #0056b3;
}