/* --- Global Styles & Variables --- */
:root {
    --primary-color: #6a5af9; /* A nice modern purple */
    --secondary-color: #fca311; /* A contrasting accent for the popular badge */
    --dark-text: #14213d;
    --light-text: #6c757d;
    --background-color: #f8f9fa;
    --card-background: #ffffff;
    --input-background: #edf2f7;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

 

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 16px;
    position: relative;
    transform: translateY(4px); /* Vertically align with text */
}

/* Creating the checkmark shape */
.icon-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #28a745; /* Green color */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Creating the cross shape */
.icon-cross::before, .icon-cross::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 4px;
    width: 2px;
    height: 14px;
    background-color: #dc3545; /* Red color */
}
.icon-cross::before {
    transform: rotate(45deg);
}
.icon-cross::after {
    transform: rotate(-45deg);
}

.form-groupc input, .form-groupc select, .form-groupc textarea {
	width: 100% !important;
}

.section-title
{
	top: -10px !important;
}

body { 
    background-color: var(--background-color);
    color: var(--dark-text);
    display: flex;
    justify-content: center;
    align-self: center;
    min-height: 100vh;
    padding: 20px;
	vertical-align: top;
}

.container {
    width: 100%;
    max-width: 400px; /* Perfect for mobile view */
}

/* --- Login Section (NEW) --- */
.login-section {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    text-align: center;
}

.login-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-form input {
    width: 100% !important;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: var(--input-background);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 90, 249, 0.2);
}

.login-form input[type=checkbox], .login-form  input[type=radio] 
{ 
    width: 10px !important; 
}

.login-form .a, .login-form .a:hover
{
	color: #8980D9;
}

.btn-login {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}
.btn-login:hover {
    background-color: #5548d9;
}


/* --- Header --- */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.header p {
    font-size: 1rem;
    color: var(--light-text);
}



.avertizare-pachet {
    background-color: #BD3D3F;
	color: #ffffff;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent; 
    position: relative;
    overflow: hidden;
	margin: 5px;
}



/* --- Pricing Cards --- */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chenar_cards {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
 

.pricing-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.price sup {
    font-size: 1.5rem;
    font-weight: 600;
    top: -1.2em;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-text);
}

/* --- Features List --- */
.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
	line-height: 190%;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.features-list i {
    width: 20px;
    margin-right: 12px;
}

.fa-check {
    color: #28a745;
}

.fa-times {
    color: #dc3545;
}

/* --- Buttons --- */
.btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--card-background);
}
.btn-primary:hover {
    background-color: #5548d9;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--card-background);
}


/* --- "Most Popular" Highlight --- */
.pricing-card.popular {
    border-color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: -1px;
    background-color: var(--secondary-color);
    color: var(--dark-text);
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 15px;
}


/* --- Sign Up Prompt (UPDATED) --- */
.signup-prompt {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
}

.signup-prompt a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.signup-prompt a:hover {
    text-decoration: underline;
}