:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #2ecc71;
    --background-light: #f4f6f7;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 100%);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1), 
        0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-speed) ease;
}

.container:hover {
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15), 
        0 7px 20px rgba(0, 0, 0, 0.08);
}

.compinfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

h1, h2, h3, h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

h1 {
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.home-button-container {
    margin-bottom: 20px;
}

.home-button {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--secondary-color);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

input[type="text"] {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

button {
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed) ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .container {
        width: 95%;
        padding: 20px;
        margin: 20px 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    input[type="text"], 
    button {
        width: 100%;
    }
}