﻿body {
}

:root {
    /* Color */
    --color-primary: #002440; /* #cb8c25 #002440 */
    --color-second: #e9eaeb; /* #773c00 #e9eaeb; */
    --color-yellow: #fca531; /* #fca531; */
    --color-white: #fff;
    --color-black: black;
    --color-red: #DC4C64;
    --color-green: #14A44D;
}

.popup {
    width: 380px;
    background-color: var(--color-white);
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    visibility: hidden;
    transition: transform 0.5s, top 0.5s;
    z-index: 9999;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
}

.iconbox {
    display: flex;
    justify-content: center;
    margin-top:-50px;
}
.icon-success {
    width: 80px;
    height: 80px;
    background-color: var(--color-green);
    color: var(--color-second);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2)
}

.icon-fail {
    width: 80px;
    height: 80px;
    background-color: var(--color-red);
    color: var(--color-second);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2)
}

.popup h2{
    margin:1rem;
}

.popup button {
    width: 100px;
    padding: 5px 10px;
    height: 40px;
    border-radius: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-yellow);
}