
.success-box{
    max-width: 550px;
    margin: auto;
    padding: 40px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
}

.success-icon{
    font-size: 70px;
    color: #28a745;
    margin-bottom: 20px;
}

.check-animation {
  animation: pop 0.4s ease-out forwards;
}

@keyframes pop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    0% {opacity:0; transform: translateY(20px);}
    100% {opacity:1; transform: translateY(0);}
}

.btn-gradient{
    background: linear-gradient(45deg, #fc6e1d, #ff9f55);
    color:#fff;
    border:none;
    padding:12px 18px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-gradient:hover{
    opacity: .85;
}

body{
    background: #f4f4f4;
}












body{ background:#f5f5f5; font-family: 'Inter', sans-serif; }

.signup-card{
    max-width: 480px;
    margin:auto;
    padding:35px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.1);
    animation:fadeIn .5s ease;
}

@keyframes fadeIn {
    from{ opacity:0; transform:translateY(20px); }
    to{ opacity:1; transform:translateY(0); }
}

.profile-preview{
    width:110px;
    height:110px;
    border-radius:50%;
    border:4px solid #fc6e1d;
    object-fit:cover;
    margin-bottom:10px;
}

.btn-main{
    background:#fc6e1d;
    color:#fff;
    font-weight:600;
    padding:12px;
    border-radius:10px;
    transition:.3s;
}

.btn-main:hover{
    opacity:.85;
}

.header-title{
    font-size:24px;
    font-weight:700;
    text-align:center;
    margin-bottom:15px;
}

.success-toast{
    position:fixed;
    top:20px;
    right:20px;
    background:#28a745;
    color:#fff;
    padding:15px 20px;
    border-radius:10px;
    box-shadow:0px 5px 15px rgba(0,0,0,0.2);
    z-index:9999;
    animation:slideIn .5s ease;
}

@keyframes slideIn {
    from{opacity:0; transform:translateX(40px);}
    to{opacity:1; transform:translateX(0);}
}










  
/* Hero */
.tc-hero {
    text-align: center;
    padding: 80px 0 40px;
}
.tc-hero h1 {
    font-size: 44px;
    font-weight: 700;
}
.tc-hero p {
    color: #666;
    margin-top: 10px;
    font-size: 18px;
}
.tc-date {
    font-size: 14px;
    margin-top: 10px;
    color: #999;
    display: block;
}

/* Container */
.tc-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Cards */
.tc-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.25s ease;
}
.tc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

/* Icons */
.tc-icon {
    width: 55px;
    height: 55px;
    background: #fff3e4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.tc-icon i {
    font-size: 22px;
    color: #ff7a00;
}

/* Typography */
.tc-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.tc-card p, .tc-card ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}
.tc-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

/* Highlight Note */
.tc-note {
    background: #fff6dd;
    padding: 12px 15px;
    border-left: 4px solid #ff7a00;
    border-radius: 6px;
    margin-top: 15px;
}

/* Contact Section */
.tc-contact {
    text-align: center;
    padding: 40px;
    background: #f8f9fc;
    border-radius: 18px;
    margin-top: 30px;
}
.tc-contact h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

/* Mobile */
@media(max-width: 600px) {
    .tc-hero h1 { font-size: 34px; }
    .tc-card { padding: 22px; }
}