/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background: white;
    color: #764ba2;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(1px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    display: flex;
    max-width: 900px;
    width: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #777;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #764ba2;
}

.modal-left {
    flex: 1;
    padding: 50px 40px;
    background: #f8f9fa;
    border-right: 1px solid #eaeaea;
}

.modal-right {
    flex: 1.2;
    padding: 50px 40px;
    background: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.logo i {
    font-size: 28px;
    color: #764ba2;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    text-shadow: none;
}

h2 {
    color: #333;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.2);
    outline: none;
}

.btn-primary {
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    margin-bottom: 15px;
}

.btn-primary:hover {
    background: linear-gradient(to right, #5a6dd1, #6a4298);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-password a {
    color: #764ba2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.pricing-options {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-option {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    background: white;
    border: 1px solid #eaeaea;
    text-align: center;
    transition: all 0.3s;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #764ba2;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #764ba2;
    margin-bottom: 5px;
}

.price-type {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    color: #555;
    font-size: 15px;
}

.signup-link a {
    color: #764ba2;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

.domain-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.domain-list {
    list-style: none;
    margin-bottom: 25px;
}

.domain-list li {
    padding: 10px 0;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.domain-list li:hover {
    color: #764ba2;
}

.domain-list li i {
    margin-right: 10px;
    color: #764ba2;
}

.suggested-results {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.suggested-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.suggested-header h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.hide-link {
    color: #764ba2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.domain-table {
    width: 100%;
    border-collapse: collapse;
}

.domain-table tr {
    border-bottom: 1px solid #eee;
}

.domain-table tr:last-child {
    border-bottom: none;
}

.domain-table td {
    padding: 12px 0;
}

.domain-name {
    font-weight: 600;
    color: #333;
}

.domain-price {
    color: #764ba2;
    font-weight: 600;
    text-align: right;
}

.discount-tag {
    background: #e6f7ee;
    color: #10b981;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 10px;
}

.original-price {
    color: #777;
    font-size: 12px;
    text-decoration: line-through;
}