
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.profile {
    width: 100px;
    height: 120px;
    border-radius: 50%;
    border: 0px solid #fff;
    margin-right: 00px;
}
.logo {
    color: #0f1052;
    font-weight: 1000;
    font-size: 1.6rem;
    letter-spacing: 2px;
    cursor: default;
    text-shadow: 0px 2px 2px rgb(225, 225, 230);
margin-right: 0PX;
}

body {
    background-color: #3f3b80; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}


.container {
    background-color: #2e2b40; 
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #2249f7;
    font-size: 25px;
    margin-bottom: 15px;
}


input {
    width: 100%;
    padding: 12px;
    border: 2px solid #0a2cec;
    border-radius: 6px;
    font-size: 16px;
    background-color: #1c1b29;
    color: #fff;
    margin-bottom: 10px;
    transition: 0.3s;
}

input:focus {
    outline: none;
    border-color :#3330fa;
    box-shadow: 0 1px 8px rgba(99, 129, 228, 0.8);
}


select {
    width: 100%;
    padding: 10px;
    border: 2px solid #3033fa;
    border-radius: 6px;
    font-size: 16px;
    background-color: #1c1b29;
    color: #fff;
    margin-bottom: 15px;
    transition: 0.3s;
}

select:focus {
    outline: none;
    border-color: #0b19db;
        box-shadow: 0 1px 8px rgba(99, 129, 228, 0.8);

}

button {
    background-color: #0b08e0;
    color: #eeeef3;
    font-size: 22px;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #305fc6;
}


.loader {
    display: none;
    margin: 15px auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #060adf;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


#outputt {
    background-color: #1c1b29;
    color: #06abec;
    padding: 12px;
    border: 2px solid #071eee;
    border-radius: 6px;
    font-size: 16px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
}
