html, body {
    margin: 0;
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    color: #333333;
    overflow-y: auto;
}

.docs-body {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
}

.docs-container {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

.docs-container h1 {
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 600;
}

.docs-container h2 {
    margin-top: 30px;
    color: #4a90e2;
    font-weight: 500;
}

.docs-container ul {
    padding-left: 20px;
}

.docs-container li {
    margin-bottom: 15px;
    color: #555;
}

.docs-container p {
    color: #555;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.logo-text {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
}

.logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
}

.brand-text {
    background: linear-gradient(to bottom, #67b1ff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 0 2px;
}

.brand-text::after {
    content: "PREDICTPRO";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(to bottom, #67b1ff, #4a90e2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    filter: blur(1px);
}

.gradiented-text {
    background: linear-gradient(to bottom, #67b1ff 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer {
    width: 100%;
    background-color: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-top: auto;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.footer p {
    margin: 0;
    padding: 0;
    color: #777;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    transform: scale(0.8);
}

.footer-links {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-copyright {
    margin-top: 10px;
    font-size: 13px;
}

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

.form-group {
    width: 100%;
    margin-bottom: 2rem;
}

input {
    width: 100%;
    padding: 0.5rem;
    border:none;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-bottom: 1px solid #424242;
}

.helper-text {
    font-size: 0.8rem;
    color: #424242;
    margin-top: 0.25rem;
}

button {
    width: 190px;
    padding: 0.75rem;
    background-color: linear-gradient(45deg, rgb(55, 140, 231) 30%, rgb(103, 198, 227) 90%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #67b1ff;
}

.message-container {
    height: 40px;
}

.message {
    text-align: center;
}

.message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 30px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

#passwordHelper, #confirmPasswordHelper {
    color: #444;
}

.not-found-container, .success-container, .server-message-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.not-found-main {
  font-size: 100px;
}

.success-main {
  font-size: 80px;
  color: #4caf50;
}

.server-error-main {
  font-size: 80px;
  color: #dc3545;
}

.success-text, .server-error-text, .not-found-text {
  width: 300px;
  text-align: center;
  margin-top: 20px;
}

.plan-selection {
    background: #f9f9f9;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    border-radius: 8px;
}

.plan-option {
    position: relative;
    width: 100%;
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-option label {
    display: block;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option input[type="radio"]:checked + label {
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.05);
    font-weight: 600;
}

.plan-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
}

.plan-name {
    font-size: 16px;
    text-transform: capitalize;
    color: #333;
}

.plan-price {
    font-size: 16px;
    color: #4a90e2;
}

.plan-option:hover label {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
    font-weight: 500;
}
