* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {

    font-family: Arial, sans-serif;

    background: #f5f7fb;

    color: #1f2937;

    min-height: 100vh;

}


a {

    text-decoration: none;

}


/* ==================================
   NAVBAR
================================== */

.navbar {

    background: white;

    border-bottom: 1px solid #e5e7eb;

}


.navbar-container {

    max-width: 1200px;

    margin: auto;

    padding: 18px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.logo {

    font-size: 25px;

    font-weight: bold;

    color: #635bff;

}


.navigation {

    display: flex;

    gap: 25px;

}


.navigation a {

    color: #374151;

    font-weight: 500;

}


.navigation a:hover {

    color: #635bff;

}


/* ==================================
   HERO
================================== */

.hero {

    padding: 120px 20px;

    text-align: center;

}


.hero-content {

    max-width: 850px;

    margin: auto;

}


.small-title {

    color: #635bff;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.hero h1 {

    font-size: 55px;

    line-height: 1.15;

    margin-bottom: 25px;

}


.hero h1 span {

    color: #635bff;

}


.hero-description {

    max-width: 650px;

    margin: auto;

    font-size: 18px;

    line-height: 1.7;

    color: #6b7280;

}


.hero-buttons {

    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 15px;

}


/* ==================================
   BUTTON
================================== */

.button {

    display: inline-block;

    border: none;

    background: #635bff;

    color: white;

    padding: 13px 22px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;

}


.button:hover {

    opacity: 0.9;

}


.button.secondary {

    background: #e5e7eb;

    color: #374151;

}


.full-width {

    width: 100%;

}


/* ==================================
   FEATURES
================================== */

.features {

    max-width: 1100px;

    margin: auto;

    padding: 40px 20px 100px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.feature-card {

    background: white;

    padding: 35px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 5px 25px rgba(0,0,0,0.06);

}


.feature-icon {

    font-size: 40px;

    margin-bottom: 15px;

}


.feature-card h3 {

    margin-bottom: 10px;

}


.feature-card p {

    color: #6b7280;

    line-height: 1.6;

}


/* ==================================
   FORMS
================================== */

.form-container {

    width: 430px;

    max-width: 90%;

    margin: 70px auto;

    background: white;

    padding: 35px;

    border-radius: 15px;

    box-shadow: 0 5px 30px rgba(0,0,0,0.08);

}


.form-container.large {

    width: 650px;

}


.form-container h2 {

    margin-bottom: 10px;

}


.form-subtitle {

    color: #6b7280;

    margin-bottom: 25px;

}


form {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


label {

    font-size: 14px;

    font-weight: 600;

    margin-top: 8px;

}


input,
textarea {

    width: 100%;

    padding: 13px;

    border: 1px solid #d1d5db;

    border-radius: 7px;

    font-size: 15px;

    outline: none;

}


input:focus,
textarea:focus {

    border-color: #635bff;

}


textarea {

    height: 120px;

    resize: vertical;

}


small {

    color: #6b7280;

}


.password-box {

    position: relative;

}


.password-box input {

    padding-right: 70px;

}


.toggle-password {

    position: absolute;

    right: 8px;

    top: 7px;

    border: none;

    background: none;

    color: #635bff;

    cursor: pointer;

}


.form-footer {

    margin-top: 20px;

    text-align: center;

    color: #6b7280;

}


.form-footer a {

    color: #635bff;

    font-weight: bold;

}


/* ==================================
   DASHBOARD
================================== */

.dashboard {

    max-width: 1100px;

    margin: auto;

    padding: 60px 20px;

}


.dashboard-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 35px;

}


.dashboard-header h1 {

    margin-top: 5px;

}


.stats {

    display: grid;

    grid-template-columns: repeat(2, 200px);

    gap: 20px;

    margin-bottom: 30px;

}


.stat-card {

    background: white;

    padding: 25px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);

}


.stat-card h2 {

    font-size: 30px;

    color: #635bff;

}


.stat-card p {

    color: #6b7280;

    margin-top: 5px;

}


.dashboard-card {

    background: white;

    padding: 30px;

    border-radius: 15px;

}


.card-preview {

    margin: 25px 0;

    padding: 30px;

    background: #f5f7fb;

    border-radius: 12px;

}


.card-preview p {

    color: #6b7280;

    margin-top: 5px;

}


.actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.empty-state {

    text-align: center;

    background: white;

    padding: 70px 30px;

    border-radius: 15px;

}


.empty-state p {

    color: #6b7280;

    margin: 15px 0 25px;

}


/* ==================================
   PUBLIC CARD
================================== */

.public-card-container {

    min-height: 75vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 50px 20px;

}


.profile-card {

    width: 430px;

    max-width: 100%;

    background: white;

    padding: 45px 35px;

    border-radius: 25px;

    text-align: center;

    box-shadow: 0 15px 50px rgba(0,0,0,0.12);

}


.profile-avatar {

    width: 90px;

    height: 90px;

    margin: auto auto 20px;

    border-radius: 50%;

    background: #635bff;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 38px;

    font-weight: bold;

}


.profile-card h1 {

    margin-bottom: 8px;

}


.profile-card h3 {

    color: #635bff;

    font-weight: 500;

}


.company {

    color: #6b7280;

    margin-top: 5px;

}


.about {

    color: #6b7280;

    line-height: 1.6;

    margin: 25px 0;

}


.contact-info {

    margin: 20px 0;

    color: #4b5563;

}


.contact-info p {

    margin: 8px 0;

}


.social-links {

    display: flex;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    margin: 25px 0;

}


.social-links a {

    padding: 8px 14px;

    border-radius: 20px;

    background: #f0efff;

    color: #635bff;

}


/* ==================================
   FLASH MESSAGE
================================== */

.messages {

    position: fixed;

    top: 80px;

    right: 20px;

    z-index: 1000;

}


.alert {

    background: #1f2937;

    color: white;

    padding: 13px 18px;

    border-radius: 8px;

    margin-bottom: 10px;

}


/* ==================================
   FOOTER
================================== */

.footer {

    text-align: center;

    padding: 30px;

    color: #6b7280;

    border-top: 1px solid #e5e7eb;

}


/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 700px) {

    .hero h1 {

        font-size: 38px;

    }


    .features {

        grid-template-columns: 1fr;

    }


    .navigation {

        gap: 10px;

    }


    .dashboard-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }


    .stats {

        grid-template-columns: 1fr 1fr;

    }

}