﻿.error-page {
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(circle, #ffffff 0%, #006494 150%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 16px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.logo-outside {
    margin-bottom: 24px;
}

    .logo-outside img {
        max-width: 150px;
        height: auto;
    }

.error-content {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    width: 100%;
}

    .error-content h1 {
        color: #333333;
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .error-content p {
        font-size: 15px;
        color: #444444;
        margin-bottom: 28px;
    }

.error-link {
    display: inline-block;
    background-color: #588CA8;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .error-link:hover {
        background-color: #588CA8; /* Hover'da aynı kalsın */
        color: white;
    }



.not-found-page {
    padding: 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #444;
}

    .not-found-page h1 {
        font-size: 26px;
        color: #c59d5f;
        margin-bottom: 10px;
    }

    .not-found-page p {
        font-size: 16px;
        margin-bottom: 20px;
    }

.not-found-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c59d5f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
}

    .not-found-link:hover {
        background-color: #a77e42;
    }
