/* login.css */

.login-area {
    padding: 50px;
    background-color: #f5f5f5;
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.3) inset;
}

h2 {
    color: rgb(0, 5, 105);
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
}

.warning {
    color: #b22222;
    background-color: #ffebeb;
}

.platforms {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adds spacing between platform blocks */
}

.platform {
    text-align: center;
    width: 250px; /* Fixed width for uniformity */
}

.platform a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: rgb(0, 5, 105);
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    gap: 10px; /* Space between image and text */
    transition: all 0.3s ease, transform 0.3s ease;
}

.platform a:hover {
    background-color: rgb(0, 5, 105);
    color: white;
    transform: scale(1.05);
    border: 5px solid white;
}

.platform img {
    width: 40px; /* Uniform size for all logos */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between the image and the text */
    border-radius: 5px; /* Optional: rounding image corners */
}

.platform span {
    flex-grow: 1; /* Ensures text takes up remaining space */
}