﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*background: linear-gradient(135deg, #ff9500, #ff6b35);*/
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

    .container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff9500, #ff6b35, #ff4500);
        border-radius: 20px 20px 0 0;
    }

.header {
    text-align: center;
    margin-bottom: 30px;
}

    .header h2 {
        color: #ff6b35;
        font-size: 1.8em;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .header p {
        color: #666;
        font-size: 1.1em;
    }

.tracking-icon {
    background: linear-gradient(135deg, #f58229, #f58229);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

    .form-group label {
        display: block;
        color: #333;
        font-weight: 500;
        margin-bottom: 8px;
        font-size: 1.1em;
    }

.input-container {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 10px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    background: #fafafa;
}

    .form-control:focus {
        outline: none;
        border-color: #ff9500;
        background: white;
        box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
        transform: translateY(-1px);
    }

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.btn {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 40px;
    font-size: -0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #f58229, #f58229);
    color: white;
    margin-bottom: 20px;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.btn-success {
    background: linear-gradient(135deg, #EF7D17, #EF7D17);
    color: white;
    border: 2px solid transparent;
    margin-bottom: 20px;
}

    .btn-success:hover {
        background: white;
        color: #ff7f00;
        border-color: #ff7f00;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 127, 0, 0.2);
    }

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: 500;
    position: relative;
    animation: slideDown 0.3s ease;
}

.alert-danger {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
    border-left: 4px solid #f44336;
}

.alert-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff9500, transparent);
    margin: 30px 0;
}

.book-appointment-section {
    text-align: center;
    padding-top: 20px;
}

.book-appointment-text {
    color: #666;
    margin-bottom: 15px;
    font-size: 1em;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 149, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        margin: 10px;
    }

    .header h2 {
        font-size: 1.8em;
    }

    .tracking-icon {    
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

