* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(-45deg, #FFE5CC, #FFB366, #FF944D, #FFA366);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1),
                0 0 50px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-box h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

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

input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

input:focus {
    border-color: #FF944D;
    box-shadow: 0 0 15px rgba(255, 148, 77, 0.2);
    outline: none;
    transform: translateY(-2px);
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #FF944D, #FFB366);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 148, 77, 0.2);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 148, 77, 0.3);
    background: linear-gradient(45deg, #FFB366, #FF944D);
}

.error {
    color: #ff4444;
    text-align: center;
    margin-top: 10px;
}

.hidden {
    display: none !important;
}

.countdown-section {
    text-align: center;
    margin-bottom: 50px;
}

.countdown-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.location-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
}

.person-location {
    text-align: center;
}

.person-location img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.distance-line {
    flex-grow: 1;
    height: 2px;
    background: #7c83fd;
    margin: 0 20px;
    position: relative;
}

#distanceText {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 15px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Profile button styles */
.profile-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-button:hover {
    transform: scale(1.1);
}

.profile-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-image-container {
    text-align: center;
}

#currentProfilePic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

#profilePicInput {
    display: none;
}

.meeting-update-section {
    width: 100%;
    text-align: center;
}

#nextMeetingInput {
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
}

/* Add these styles for the orange rain canvas */
#orangeRain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.typing-container {
    text-align: center;
    margin-bottom: 30px;
    min-height: 120px;
    position: relative;
    padding: 10px;
}

#typing-text {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.2;
    white-space: pre-wrap;
}

.cursor {
    display: inline;
    font-size: 36px;
    color: #333;
    font-weight: bold;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Add these gradient animations */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Add decorative elements */
.login-box::before {
    content: '🍊';
    position: absolute;
    top: -40px;
    left: -30px;
    font-size: 60px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.9;
}

.login-box::after {
    content: '🍊';
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-size: 60px;
    animation: float 6s ease-in-out infinite reverse;
    opacity: 0.9;
} 