* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ravi';
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f5f5f5;
}
.container {
    width: 400px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}
h2 {
    margin-bottom: 1rem;
    color: #333;
}
input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    margin-bottom: 1rem;
    transition: 0.3s;
}
input:focus {
    border-color: #3f51b5;
    box-shadow: 0px 0px 5px rgba(63, 81, 181, 0.5);
}
button {
    width: 100%;
    padding: 12px;
    
    background: #3f51b5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background: #303f9f;
}
.shortened-link {
    margin-top: 1rem;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 6px;
    word-break: break-word;
    color: #1a73e8;
    font-weight: 500;
}
.url-validation{
    color: red;
    direction: rtl;
    margin-bottom: 1rem;
}